Dziecie Chaosu
Temat: [Visual C++] kompilacja w trybie release
...skoro brak ogólnie dostępnych informacji na ten temat.
Warningów jest z 2 tys. tzn. jest ich tyle, ale tylko z 6,7 rodzajów. Oto one:
1.) warning C4244: '=' : conversion from 'LRESULT' to 'UINT', possible loss of data
(zamiast LRESULT i UINT są różne formaty np. 'size_t' to 'unsigned int' itd.)
2.) warning C4996: 'itoa' was declared deprecated
(zamiast itoa często pojawia się fopen, fprintf, sprintf, strcpy i różne inne)
3.) warning C4101: 'znak' : unreferenced local variable
4.) signed/unsigned mismatch
(to odnosi siÄ™ do linjek typu for(int d=0;d<z;d++) gdzie d jest typu int a 'z' typu unsigned int)
5.) Do linijki w pliku header.h: extern struct struktura{int pole1; string bufor}; wyskakuje warning
warning C4091: 'extern ' : ignored on left of 'struktura' when no variable is declared
6.)
Do linijki buff[0]=223; gdzie buff jest tablicÄ… 4 char...
Źródło: elektroda.pl/rtvforum/topic1507667.html