From 754a85ee923b6438a1cfed17cea6ff10838fd5a8 Mon Sep 17 00:00:00 2001 From: Chris Blume Date: Tue, 13 Feb 2024 12:24:09 -0800 Subject: [PATCH] Reflect VS 17.9 release (#204) --- Code/max/Compiling/Configuration/Compiler/VC.hpp | 8 ++++++-- Docs/DeprecationSchedule.md | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Code/max/Compiling/Configuration/Compiler/VC.hpp b/Code/max/Compiling/Configuration/Compiler/VC.hpp index 13e2931..b771f3b 100644 --- a/Code/max/Compiling/Configuration/Compiler/VC.hpp +++ b/Code/max/Compiling/Configuration/Compiler/VC.hpp @@ -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 diff --git a/Docs/DeprecationSchedule.md b/Docs/DeprecationSchedule.md index c1154df..b3b652c 100644 --- a/Docs/DeprecationSchedule.md +++ b/Docs/DeprecationSchedule.md @@ -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| |