Added support for VS2022 Update-6.

This commit is contained in:
LoRd_MuldeR 2023-06-18 14:28:45 +02:00
parent 6b552800e4
commit 0eb3b32c1f

View File

@ -67,7 +67,11 @@ namespace MUtils
#error Compiler is not supported! #error Compiler is not supported!
#endif #endif
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
#if (_MSC_VER == 1932) #if (_MSC_VER == 1936)
"MSVC 2022.6";
#elif (_MSC_VER == 1933)
"MSVC 2022.3";
#elif (_MSC_VER == 1932)
"MSVC 2022.2"; "MSVC 2022.2";
#elif (_MSC_VER == 1931) #elif (_MSC_VER == 1931)
"MSVC 2022.1"; "MSVC 2022.1";