Skip to content

Commit 4657b57

Browse files
committed
Merged revision(s) 22173 from trunk/OpenMPT:
[Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.12. ........ git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.30@22175 56274372-70c3-4bfc-bfc3-4c3a0b034d27
1 parent 7d5f3bb commit 4657b57

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/mpt/base/detect_compiler.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@
5050
#elif defined(_MSC_VER)
5151

5252
#define MPT_COMPILER_MSVC 1
53-
#if (_MSC_VER >= 1941)
53+
#if (_MSC_VER >= 1942)
54+
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 12)
55+
#elif (_MSC_VER >= 1941)
5456
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 11)
5557
#elif (_MSC_VER >= 1940)
5658
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 10)

0 commit comments

Comments
 (0)