Go to the documentation of this file.
7 #if __GNUC__ > 3 || (!defined(DEBUG) && __GNUC__ > 2)
8 #define ALWAYS_INLINE inline __attribute__((always_inline))
9 #define NEVER_INLINE __attribute__((noinline))
10 #elif defined _MSC_VER && 0
13 #define ALWAYS_INLINE __forceinline
14 #define NEVER_INLINE __declspec(noinline)
16 #define ALWAYS_INLINE inline