7 lines
131 B
C++
7 lines
131 B
C++
#pragma once
|
|
|
|
#ifdef _MSC_VER
|
|
#define ALWAYS_INLINE __forceinline
|
|
#else
|
|
#define ALWAYS_INLINE __attribute__((always_inline))
|
|
#endif |