From d4c54e099c484c6599be36e3b58cc7caa8596db1 Mon Sep 17 00:00:00 2001 From: kobalicek Date: Thu, 11 Jun 2020 21:03:11 +0200 Subject: [PATCH] [Bug] Fixed ASMJIT_CXX_MAKE_VER to not use PATCH, which doesn't exist anymore --- src/asmjit/core/api-config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asmjit/core/api-config.h b/src/asmjit/core/api-config.h index 91e679e..1388da4 100644 --- a/src/asmjit/core/api-config.h +++ b/src/asmjit/core/api-config.h @@ -256,7 +256,7 @@ namespace asmjit { // ============================================================================ #define ASMJIT_CXX_GNU 0 -#define ASMJIT_CXX_MAKE_VER(MAJOR, MINOR) ((MAJOR) * 10000000 + (MINOR) * 100000 + (PATCH)) +#define ASMJIT_CXX_MAKE_VER(MAJOR, MINOR) ((MAJOR) * 1000 + (MINOR)) // Intel Compiler [pretends to be GNU or MSC, so it must be checked first]: // - https://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler