Skip to content

Commit

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


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.30@20837 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed May 22, 2024
1 parent d3ba992 commit ef06a8e
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 >= 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)
Expand Down

0 comments on commit ef06a8e

Please sign in to comment.