Can anybody please tell me which flag I have to use in order to make gcc ignore the 'comparison between signed and unsigned integer expressions' warning message.
Thank you!
|
|
|
But you should really fix the comparison it's warning you about anyway. |
|||||||||||
|
|
Add -Wall -Wno-sign-compare or -Wall -WExtra -Wno-sign-compare But to fix that problem remember to do something like this if the variable is like this int x=0; change it to unsigned int x=0; |
|||||
|