Skip to content

Commit 73b50b7

Browse files
committed
Merged revision(s) 21433 from trunk/OpenMPT:
[Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.11. ........ git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.31@21434 56274372-70c3-4bfc-bfc3-4c3a0b034d27
1 parent 6bac77a commit 73b50b7

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 >= 1940)
53+
#if (_MSC_VER >= 1941)
54+
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 11)
55+
#elif (_MSC_VER >= 1940)
5456
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 10)
5557
#elif (_MSC_VER >= 1939)
5658
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 9)

0 commit comments

Comments
 (0)