From 43bacee23b5497886a3c06995b54cdc57d760f43 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 23 Dec 2016 23:29:38 +0100 Subject: [PATCH] Added support for VS 2015.3 with KB3165756 installed. --- 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 755ba9a..bbe84f6 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -73,7 +73,7 @@ namespace MUtils static const char *const COMPILER_VERS = "MSVC 2015.1"; #elif (_MSC_FULL_VER == 190023918) static const char *const COMPILER_VERS = "MSVC 2015.2"; - #elif (_MSC_FULL_VER == 190024210) + #elif (_MSC_FULL_VER == 190024210) || (_MSC_FULL_VER == 190024215) static const char *const COMPILER_VERS = "MSVC 2015.3"; #else #error Compiler version is not supported yet! -- 2.11.4.GIT