GigaPasjans
Loading...
Searching...
No Matches
Macro.h
1#pragma once
2
3#if defined(_MSC_VER)
4 #define FORCE_INLINE __forceinline
5#elif defined(__GNUC__) || defined(__clang__)
6 #define FORCE_INLINE inline __attribute__((always_inline))
7#else
8 #define FORCE_INLINE inline
9#endif