From 0b1047ec2bf00fa17a8de439860a07d8e89b7562 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sun, 16 Jun 2024 14:48:45 +0200 Subject: [PATCH] Added support for VS2022 Update-10. --- include/MUtils/Version.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 5e05cc6..3efa44b 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,15 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1936) + #if (_MSC_VER == 1940) + "MSVC 2022.10"; + #elif (_MSC_VER == 1939) + "MSVC 2022.9"; + #elif (_MSC_VER == 1938) + "MSVC 2022.8"; + #elif (_MSC_VER == 1937) + "MSVC 2022.7"; + #elif (_MSC_VER == 1936) "MSVC 2022.6"; #elif (_MSC_VER == 1933) "MSVC 2022.3";