From 3cc2a4dd8d3ff0232d9e29c244620c87519b5133 Mon Sep 17 00:00:00 2001 From: Bertrand Bellenot Date: Tue, 7 May 2024 15:35:07 +0200 Subject: [PATCH] Add support for Visual Studio >= v17.10 --- lib/Utils/PlatformWin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Utils/PlatformWin.cpp b/lib/Utils/PlatformWin.cpp index 0511d9e7..0e9200bb 100644 --- a/lib/Utils/PlatformWin.cpp +++ b/lib/Utils/PlatformWin.cpp @@ -384,7 +384,7 @@ static int GetVisualStudioVersionCompiledWith() { return 15; #elif (_MSC_VER < 1930) return 16; -#elif (_MSC_VER < 1940) +#elif (_MSC_VER < 1950) return 17; #else #error "Unsupported/Untested _MSC_VER"