From 59c1483fb9865ac9d13b57f8ddbdfb358a99df86 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 5 Feb 2009 11:06:23 +0000 Subject: [PATCH] Added suppression of C4512 as it's just causing lots of warnings on some VS compiler versions, fixes the warnings via code is just too much of risk at this late stage of the 2.8 release --- include/osg/Export | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osg/Export b/include/osg/Export index 49f6cfbb5..1b444abc1 100644 --- a/include/osg/Export +++ b/include/osg/Export @@ -25,6 +25,7 @@ #pragma warning( disable : 4244 ) #pragma warning( disable : 4251 ) #pragma warning( disable : 4275 ) + #pragma warning( disable : 4512 ) #endif #if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)