I have an application that is created using g ++. I added -Wall to the compilation flags to fix any problems; unused variables, variable used before reference, comparison of signature / unsigned values, etc.
The problem is that I get hundreds of lines of unwanted comments:
remark #981: operands are evaluated in unspecified order
What does this remark mean? And how do I get rid of it so that I can see valuable warnings / comments?
Thanks for the help!
source
share