Go to the documentation of this file. 4 #if defined(LUG_COMPILER_MSVC) 5 #define LUG_SYSTEM_FUNCTION_NAME __FUNCSIG__ 7 #define LUG_SYSTEM_FUNCTION_NAME __PRETTY_FUNCTION__ 11 #if defined(__clang__) || defined(__GNUC__) 13 #define LUG_LIKELY(x) __builtin_expect(!!(x), 1) 14 #define LUG_UNLIKELY(x) __builtin_expect(!!(x), 0) 18 #define LUG_LIKELY(x) (x) 19 #define LUG_UNLIKELY(x) (x)