forgot this one

This commit is contained in:
Miodrag Milanovic
2015-02-15 19:19:06 +01:00
parent 30b6f8f869
commit 55fc172129

View File

@@ -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