Add pragma for warning C4652 under VC8. (Should this be pragmaed for all VC's?)

This commit is contained in:
Jason Felds
2006-10-19 04:16:09 +00:00
parent 8e8f0e192c
commit 332183a78d
@@ -17,6 +17,7 @@
#if _MSC_VER == 1400 // VC8 specific warnings
#pragma warning (disable : 4996) // deprecated functions vs "ISO C++ conformant names". (stricmp vs _stricmp)
#pragma warning (disable : 4005) // macro redefinitions (ARRAYSIZE)
#pragma warning (disable : 4652) // inconsistent compiler option 'C++ Exception Handling Unwinding'
#endif
#define snprintf _snprintf // Unsure if this goes with __MINGW32__ right now.