Disabled VisualStudio warning warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable

This commit is contained in:
Robert Osfield
2011-06-21 09:00:01 +00:00
parent 7f9e1c5a6f
commit 90a88488d3

View File

@@ -39,8 +39,11 @@
#include <osg/GLU>
#if defined(_MSC_VER) && defined(OSG_DISABLE_MSVC_WARNINGS)
// disable "structure was padded due to __declspec(align())
// disable: structure was padded due to __declspec(align())
#pragma warning( disable : 4324 )
// disable: warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable
#pragma warning( disable : 4611)
#endif
#ifndef GLAPIENTRY