The -Wall flag in g++ includes the flag -Wc++0x-compat, which checks for all sorts of problems that may (will) appear if the code is compiled against the new c++11 standard. But I’d like to disable that warning so that current warnings are not lost in the barrage of compatibility warnings. I haven’t found anything useful in the man page, nor with Google. There doesn’t seem to be a disabling flag like there is for e.g. -Wunused-variable.
Any ideas?
-Wno-c++0x-compat