I\'ve started a new project and have decided to make sure it builds cleanly with the /Wall option enabled. The only problem is not all 3rd party libraries (like boost) compi
You can push/pop a low level of warning, like this:
#pragma warning(push, 0) #include #include // ... #pragma warning(pop)
But know that it's not possible to disable all warnings. For example, some linker warnings are impossible to turn off.