From 16e01f9b9979833f022b287d0ff1e7af6fd374c4 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Thu, 7 Apr 2016 20:52:07 +0200 Subject: [PATCH] Added support for Visual Studio 2015 with Update-2. --- include/MUtils/Version.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 1c99379..82132ff 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -71,6 +71,8 @@ namespace MUtils static const char *const COMPILER_VERS = "MSVC 2015"; #elif (_MSC_FULL_VER == 190023506) static const char *const COMPILER_VERS = "MSVC 2015.1"; + #elif (_MSC_FULL_VER == 190023918) + static const char *const COMPILER_VERS = "MSVC 2015.2"; #else #error Compiler version is not supported yet! #endif -- 2.11.4.GIT