Skip to content

Commit

Permalink
Reflect VS 17.9 release (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgramMax authored Feb 13, 2024
1 parent ffb64d3 commit 754a85e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions Code/max/Compiling/Configuration/Compiler/VC.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@

#define MAX_COMPILER_MESSAGE( Message ) __pragma( message( Message ) )

#if _MSC_VER > 1938
#if _MSC_VER > 1939
MAX_COMPILER_MESSAGE( "Compiling with a newer version of MSVC than max recognizes. Using last known version." );
#elif _MSC_VER >= 1939
// MSVC++ (Visual Studio 2022 / version 17.9)
#define MAX_COMPILER_VERSION_MAJOR 17
#define MAX_COMPILER_VERSION_MINOR 9
#elif _MSC_VER >= 1938
// MCVC++ (Visual Studio 2022 / version 17.8)
// MSVC++ (Visual Studio 2022 / version 17.8)
#define MAX_COMPILER_VERSION_MAJOR 17
#define MAX_COMPILER_VERSION_MINOR 8
#elif _MSC_VER >= 1937
Expand Down
3 changes: 2 additions & 1 deletion Docs/DeprecationSchedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@

|MSVC version |Release date|max deprecation date|Adds support for |
|------------------|-----------:|-------------------:|----------------------------------------------------|
|MSVC 17.8.x |Nov 14, 2023| Current| |
|MSVC 17.9.x |Feb 13, 2024| Current| |
|MSVC 17.8.x |Nov 14, 2023| Feb 13, 2029| |
|MSVC 17.7.x |Aug 8, 2023| Nov 14, 2028| |
|MSVC 17.6.x |May 16, 2023| Aug 8, 2028| |
|MSVC 17.5.x |Feb 21, 2023| May 16, 2028| |
Expand Down

0 comments on commit 754a85e

Please sign in to comment.