From 55fc17212934727e00ca340ccf01463a6041f10d Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 15 Feb 2015 19:19:06 +0100 Subject: [PATCH] forgot this one --- include/bx/macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bx/macros.h b/include/bx/macros.h index 1c88556..b50cfc5 100644 --- a/include/bx/macros.h +++ b/include/bx/macros.h @@ -173,9 +173,9 @@ #endif // BX_COMPILER_ /// -#if defined(__GNUC__) && defined(__is_pod) +#if BX_COMPILER_GCC && defined(__is_pod) # define BX_TYPE_IS_POD(t) __is_pod(t) -#elif defined(_MSC_VER) +#elif BX_COMPILER_MSVC # define BX_TYPE_IS_POD(t) (!__is_class(t) || __is_pod(t)) #else # define BX_TYPE_IS_POD(t) false