Explorar o código

Suppress warning C4204 (non-constant aggregate initializer) issued by Visual Studio 2012 due to missing C99 support.

nullable.type %!s(int64=12) %!d(string=hai) anos
pai
achega
73a845a327
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      mongoose.c

+ 4 - 0
mongoose.c

@@ -29,6 +29,10 @@
 #define __STDC_LIMIT_MACROS   // C++ wants that for INT64_MAX
 #endif
 
+#if defined (_MSC_VER)
+#pragma warning (disable : 4204)    // non-constant aggregate initializer: issued due to missing C99 support
+#endif
+
 // Disable WIN32_LEAN_AND_MEAN.
 // This makes windows.h always include winsock2.h
 #ifdef WIN32_LEAN_AND_MEAN