1
vote
Is there an equivalent to -pedantic for gcc when using Microsoft’s Visual C++ compiler?
/W4 /Wall should do the trick.
…
5
votes
Constant value in conditional expression
A warning doesn't automatically mean that code is bad, just suspicious-looking.
Personally I start from a position of enabling all the warnings I can, then turn off any that prove …
