Skip to content

Commit

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


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.30@22888 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Feb 15, 2025
1 parent 89c0922 commit ccf6d65
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 >= 1942)
#if (_MSC_VER >= 1943)
#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 13)
#elif (_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)
Expand Down

0 comments on commit ccf6d65

Please sign in to comment.