I have an application that is being built with g++. I added -Wall to the compile flags to cleanup any problems; unused variables, variable used before referenced, comparing signed/unsigned values, etc.
The problem is, I am getting hundreds of lines of junk remarks stating:
remark #981: operands are evaluated in unspecified order
What does this remark really mean? And how do I get rid of it so I can see the valuable warnings/remarks?
Thanks for the help!