From: <sv...@op...> - 2024-08-14 09:25:53
|
Author: manx Date: Wed Aug 14 11:25:40 2024 New Revision: 21435 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21435 Log: Merged revision(s) 21433 from trunk/OpenMPT: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.11. ........ Modified: branches/OpenMPT-1.30/ (props changed) branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Modified: branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp ============================================================================== --- branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Wed Aug 14 11:25:17 2024 (r21434) +++ branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Wed Aug 14 11:25:40 2024 (r21435) @@ -50,7 +50,9 @@ #elif defined(_MSC_VER) #define MPT_COMPILER_MSVC 1 -#if (_MSC_VER >= 1940) +#if (_MSC_VER >= 1941) +#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 11) +#elif (_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) |