3#if defined(_WIN32) || defined(_WIN64)
4 #define NC_PLATFORM_WINDOWS
5#elif defined(__linux__)
6 #define NC_PLATFORM_LINUX
10 #define NC_COMPILER_MSVC
11#elif defined(__GNUC__)
12 #define NC_COMPILER_GCC
15#if defined(NC_COMPILER_MSVC)
16 #define NC_FORCE_INLINE __forceinline
17 #define NC_NO_INLINE __declspec(noinline)
18#elif defined(NC_COMPILER_GCC)
19 #define NC_FORCE_INLINE __inline__ __attribute__((always_inline))
20 #define NC_NO_INLINE __attribute__((noinline))
23#if defined(NC_COMPILER_MSVC)
24 #define NC_PRAGMA(x) __pragma(x)
25 #define NC_DISABLE_WARNING_PUSH NC_PRAGMA(warning (push))
26 #define NC_DISABLE_WARNING_POP NC_PRAGMA(warning (pop))
27 #define NC_DISABLE_WARNING_MSVC(w) NC_PRAGMA(warning (disable : w))
29 #define NC_DISABLE_WARNING_MSVC(w)
32#if defined(NC_COMPILER_GCC)
33 #define NC_PRAGMA(x) _Pragma(#x)
34 #define NC_DISABLE_WARNING_PUSH NC_PRAGMA(GCC diagnostic push)
35 #define NC_DISABLE_WARNING_POP NC_PRAGMA(GCC diagnostic pop)
36 #define NC_DISABLE_WARNING_GCC(w) NC_PRAGMA(GCC diagnostic ignored w)
38 #define NC_DISABLE_WARNING_GCC(w)