Skip to content

Commit

Permalink
stb_vorbis: minor revision to STB_FORCEINLINE macro
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Mar 27, 2021
1 parent 6c4a176 commit 8d30620
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/stb_vorbis.h
Expand Up @@ -604,9 +604,9 @@ enum STBVorbisError
#if defined(_MSC_VER)
#define STB_FORCEINLINE __forceinline
#elif defined(__GNUC__) || defined(__clang__)
#define STB_FORCEINLINE __attribute__((always_inline))
#define STB_FORCEINLINE static __inline __attribute__((always_inline))
#else
#define STB_FORCEINLINE
#define STB_FORCEINLINE static __inline
#endif
#endif

Expand Down Expand Up @@ -789,7 +789,6 @@ struct stb_vorbis
uint32 f_start;
int close_on_free;
#endif

#ifdef __SDL_SOUND_INTERNAL__
SDL_RWops *rwops;
uint32 rwops_start;
Expand Down

0 comments on commit 8d30620

Please sign in to comment.