From: LoRd_MuldeR Date: Tue, 6 Aug 2019 19:24:35 +0000 (+0200) Subject: Added support for Visual Studio 2019.2 (v16.2). X-Git-Tag: v1.13~4 X-Git-Url: http://git.osdn.net/view?p=mutilities%2FMUtilities.git;a=commitdiff_plain;h=6449fbd31162a32ddfa9f675e34b6613d0b5dbee Added support for Visual Studio 2019.2 (v16.2). --- diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 6ab6ca3..b29b44c 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,13 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1921) + #if (_MSC_VER == 1922) + #if((_MSC_FULL_VER >= 192227905) && (_MSC_FULL_VER <= 192227905)) + "MSVC 2019.2"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1921) #if((_MSC_FULL_VER >= 192127702) && (_MSC_FULL_VER <= 192127702)) "MSVC 2019.1"; #else