We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37646af commit df6c65cCopy full SHA for df6c65c
src/codecs/stb_vorbis/stb_vorbis.h
@@ -620,8 +620,10 @@ enum STBVorbisError
620
#include <limits.h>
621
622
#ifndef STB_FORCEINLINE
623
- #if defined(_MSC_VER)
+ #if defined(_MSC_VER) && (_MSC_VER >= 1200)
624
#define STB_FORCEINLINE __forceinline
625
+ #elif defined(_MSC_VER)
626
+ #define STB_FORCEINLINE static __inline
627
#elif (defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2))) || defined(__clang__)
628
#define STB_FORCEINLINE static __inline __attribute__((always_inline))
629
#else
0 commit comments