Linux: Fixed compilation error on clang/gcc

This commit is contained in:
Sour 2019-10-06 21:40:43 -04:00
parent ed00a02c51
commit 2ab153a71d

View file

@ -26,10 +26,10 @@
#ifndef __MINGW32__
#ifdef __clang__
#define __forceinline __attribute__((always_inline))
#define __forceinline __attribute__((always_inline)) inline
#else
#ifdef __GNUC__
#define __forceinline
#define __forceinline __attribute__((always_inline)) inline
#endif
#endif
#endif