[Bug] Fixed ASMJIT_CXX_MAKE_VER to not use PATCH, which doesn't exist anymore

This commit is contained in:
kobalicek
2020-06-11 21:03:11 +02:00
parent 4ea9f8ab5d
commit d4c54e099c

View File

@@ -256,7 +256,7 @@ namespace asmjit {
// ============================================================================ // ============================================================================
#define ASMJIT_CXX_GNU 0 #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]: // 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 // - https://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler