Skip to content

Commit

Permalink
Merged revision(s) 22173 from trunk/OpenMPT:
Browse files Browse the repository at this point in the history
[Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.12.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.31@22174 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Nov 13, 2024
1 parent 1cf9957 commit ee80dfd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mpt/base/detect_compiler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
#elif defined(_MSC_VER)

#define MPT_COMPILER_MSVC 1
#if (_MSC_VER >= 1941)
#if (_MSC_VER >= 1942)
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 12)
#elif (_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)
Expand Down

0 comments on commit ee80dfd

Please sign in to comment.