From e5c3d13d86fbe660cc709b6aa4344123cfa8016a Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 15 Dec 2017 20:13:49 +0100 Subject: [PATCH] Fixed detection of VC 2017.5 after recent VC update. --- include/MUtils/Version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 981461d..222e97e 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -68,7 +68,7 @@ namespace MUtils #endif #elif defined(_MSC_VER) #if (_MSC_VER == 1912) - #if(_MSC_FULL_VER == 191225830) + #if((_MSC_FULL_VER >= 191225830) && (_MSC_FULL_VER <= 191225831)) "MSVC 2017.5"; #else #error Compiler version is not supported yet!