00001
00002
00019 #pragma once
00020
00021 #if defined(__GNUC__)
00022
00023 #define NOINLINE_DECL __attribute__((noinline))
00024
00025 #elif defined(_MSC_VER)
00026
00027 #define NOINLINE_DECL __declspec(noinline)
00028
00029 #else
00030
00031 #define NOINLINE_DECL
00032
00033 #endif