]> Creatis software - gdcm.git/commitdiff
*FIX: More pragma disable fro VC++, I don't think I break something as it is also...
authormalaterre <malaterre>
Thu, 23 Oct 2003 15:54:49 +0000 (15:54 +0000)
committermalaterre <malaterre>
Thu, 23 Oct 2003 15:54:49 +0000 (15:54 +0000)
src/gdcmCommon.h

index cc80d9e9e7cf87a04170d965ab7e74f1d733116c..326c44ad204fb86fd98c7ed3d53630fd4f3f2f44 100644 (file)
 #pragma warning ( disable : 4786 )
 //'identifier' : decorated name length exceeded, name was truncated
 #pragma warning ( disable : 4503 )
+// C++ exception specification ignored except to indicate a 
+// function is not __declspec(nothrow)
+#pragma warning ( disable : 4290 )
+// signed/unsigned mismatch
+#pragma warning ( disable : 4018 )
+// return type for 'identifier' is '' (ie; not a UDT or reference to UDT. Will
+// produce errors if applied using infix notation
+#pragma warning ( disable : 4284 )
 #endif //_MSC_VER
 
 #ifdef __GNUC__