views:

42

answers:

3

I generally like to compile against warning level 4 in Visual Studio and treat all warnings as errors. The problem is, Ogre3D is not compiled with warning level 3 (neither is FBX SDK or OIS, which I am also using), and that poses a problem because now I have a ton of warnings from Ogre3D libraries that are now treated as errors. So far I have been compiling at level 3, but that makes me very uneasy. Is there any way to disable warnings for specific 3rd party libraries over which I have no control?

+2  A: 

It may be that if you disable the most well-known MSVC sillywarnings, the problem will at least become managable.

My sillywarnings suppression header is available at my blog; it's enough to compile code using <windows.h> at warning level 4 with MSVC, with no warnings.

Other than that, you can go to the extreme measure of employing a "compiler firewall", which means putting all direct usage of the 3rd party library within an implementation file or set of such files. Then you can compile those files at low warning level. But I don't think it's worth it.

Cheers & hth.,

Alf P. Steinbach
The suppression header file is very very useful, thanks!
Samaursa
+2  A: 

You don't say exactly how you are compiling, but here are some options:

1 - Inside Visual Studio, you can set the warning level for individual source files via the Properties for each source file

2 - You can also change the the warning level dynamically within a file using

#pragma warning(push, 3)
// Some code, perhaps #includes
#pragma warning(pop)

which sets the warning level to 3 between the two pragmas.

David Norman
Point number 1 is exactly what I was looking for, thanks!
Samaursa
A: 

You can wrap the 3rd party .h files into your own file and in there disable locally the offending warnings as you might not want to disable all warnings but only specific ones.

// include_file_wrapper.h

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wuninitialized"

#include "file.h"

#pragma GCC diagnostic pop

For gcc here is how this can be done

http://gcc.gnu.org/onlinedocs/gcc/Pragmas.html

http://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html#Diagnostic-Pragmas

David