Panda3DS/include/compiler_builtins.hpp
2023-07-27 17:16:45 +03:00

7 lines
No EOL
131 B
C++

#pragma once
#ifdef _MSC_VER
#define ALWAYS_INLINE __forceinline
#else
#define ALWAYS_INLINE __attribute__((always_inline))
#endif