From b257f11e8828d89e1e3e55ba57fd9cc11ca7c579 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Wed, 9 Dec 2015 20:33:11 +0100 Subject: [PATCH] Added support for Visual Studio 2015 with Update-1. --- include/MUtils/Version.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 3385a86..24baa6a 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -69,6 +69,8 @@ namespace MUtils #if (_MSC_VER == 1900) #if (_MSC_FULL_VER == 190023026) static const char *const COMPILER_VERS = "MSVC 2015"; + #elif (_MSC_FULL_VER == 190023506) + static const char *const COMPILER_VERS = "MSVC 2015.1"; #else #error Compiler version is not supported yet! #endif -- 2.11.0