Linux: Fixed compilation error on clang/gcc
This commit is contained in:
parent
ed00a02c51
commit
2ab153a71d
1 changed files with 2 additions and 2 deletions
|
@ -26,10 +26,10 @@
|
||||||
|
|
||||||
#ifndef __MINGW32__
|
#ifndef __MINGW32__
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
#define __forceinline __attribute__((always_inline))
|
#define __forceinline __attribute__((always_inline)) inline
|
||||||
#else
|
#else
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#define __forceinline
|
#define __forceinline __attribute__((always_inline)) inline
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue