فهرست منبع

Merge pull request #211 from nigels-com/msc_ver

gcc complains about _MSC_VER being an undefined macro.
Sergey Lyubka 12 سال پیش
والد
کامیت
c12838e2c3
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      mongoose.h

+ 2 - 2
mongoose.h

@@ -234,9 +234,9 @@ enum {
 
 // Macros for enabling compiler-specific checks for printf-like arguments.
 #undef PRINTF_FORMAT_STRING
-#if _MSC_VER >= 1400
+#if defined(_MSC_VER) && _MSC_VER >= 1400
 #include <sal.h>
-#if _MSC_VER > 1400
+#if defined(_MSC_VER) && _MSC_VER > 1400
 #define PRINTF_FORMAT_STRING(s) _Printf_format_string_ s
 #else
 #define PRINTF_FORMAT_STRING(s) __format_string s