Преглед изворни кода

Make SDL_stdinc.h work when compiling with -Wundef (thanks, Ben!).

Fixes Bugzilla #2664.
Ryan C. Gordon пре 10 година
родитељ
комит
1339ce71f6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      include/SDL_stdinc.h

+ 1 - 1
include/SDL_stdinc.h

@@ -226,7 +226,7 @@ typedef uint64_t Uint64;
 #define SDL_PRINTF_VARARG_FUNC( fmtargnumber )
 #define SDL_PRINTF_VARARG_FUNC( fmtargnumber )
 #define SDL_SCANF_VARARG_FUNC( fmtargnumber )
 #define SDL_SCANF_VARARG_FUNC( fmtargnumber )
 #else
 #else
-#if _MSC_VER >= 1600 /* VS 2010 and above */
+#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */
 #include <sal.h>
 #include <sal.h>
 
 
 #define SDL_IN_BYTECAP(x) _In_bytecount_(x)
 #define SDL_IN_BYTECAP(x) _In_bytecount_(x)