瀏覽代碼

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