From 8c6683d5f40ae9dc8025c13c272e6c9906dcae2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 16 Oct 2014 19:57:55 -0700 Subject: [PATCH] Fixed MSVC build. --- include/bx/platform.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/bx/platform.h b/include/bx/platform.h index 93243d7..fb9d138 100644 --- a/include/bx/platform.h +++ b/include/bx/platform.h @@ -48,6 +48,8 @@ #elif defined(_MSC_VER) # undef BX_COMPILER_MSVC # define BX_COMPILER_MSVC _MSC_VER +# undef BX_COMPILER_MSVC_COMPATIBLE +# define BX_COMPILER_MSVC_COMPATIBLE _MSC_VER #elif defined(__GNUC__) # undef BX_COMPILER_GCC # define BX_COMPILER_GCC (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)