Преглед на файлове

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

nullable.type преди 12 години
родител
ревизия
73a845a327
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  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