From 910de3d3a70d5ec8f53cbb41e59d26128c7cdf71 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 24 Jul 2015 22:35:53 +0200 Subject: [PATCH] Added support for Visual Studio 2013 with Update 5. --- include/MUtils/Version.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index f273ab7..c8ca5ee 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -75,6 +75,8 @@ namespace MUtils static const char *const COMPILER_VERS = "MSVC 2013.3"; #elif (_MSC_FULL_VER == 180031101) static const char *const COMPILER_VERS = "MSVC 2013.4"; + #elif (_MSC_FULL_VER == 180040629) + static const char *const COMPILER_VERS = "MSVC 2013.5"; #else #error Compiler version is not supported yet! #endif