Browse Source

Visual Studio versions older then 6.0 do not support __forceinline

Anonymous Maarten 23 hours ago
parent
commit
049eeee087
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/SDL3/SDL_begin_code.h

+ 1 - 1
include/SDL3/SDL_begin_code.h

@@ -431,7 +431,7 @@
 #endif /* SDL_INLINE not defined */
 
 #ifndef SDL_FORCE_INLINE
-#ifdef _MSC_VER
+#if defined(_MSC_VER) && (_MSC_VER >= 1200)
 #define SDL_FORCE_INLINE __forceinline
 #elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) )
 #define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__