Add support for Visual Studio >= v17.10

This commit is contained in:
Bertrand Bellenot 2024-05-07 15:35:07 +02:00 committed by jenkins
parent 65a2a778d1
commit 3cc2a4dd8d

View File

@ -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"