Visual Studio versions older then 6.0 do not support __forceinline

This commit is contained in:
Anonymous Maarten
2025-10-11 00:28:48 +02:00
committed by Anonymous Maarten
parent 6f8fbf5cea
commit 049eeee087

View File

@@ -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__