Author: manx
Date: Wed May 22 11:09:56 2024
New Revision: 20835
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20835
Log:
[Ref] mpt/base/detect_compiler.hpp: Detect VS2022 19.10.
Modified:
trunk/OpenMPT/src/mpt/base/detect_compiler.hpp
Modified: trunk/OpenMPT/src/mpt/base/detect_compiler.hpp
==============================================================================
--- trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Wed May 22 11:08:02 2024 (r20834)
+++ trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Wed May 22 11:09:56 2024 (r20835)
@@ -50,7 +50,9 @@
#elif defined(_MSC_VER)
#define MPT_COMPILER_MSVC 1
-#if (_MSC_VER >= 1939)
+#if (_MSC_VER >= 1940)
+#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 10)
+#elif (_MSC_VER >= 1939)
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 9)
#elif (_MSC_VER >= 1938)
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 8)
|