From d16ef6fcb297a53414a1a086a784461b90125116 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 9 Mar 2018 23:24:21 +0100 Subject: [PATCH] Added support for Visual Studio 2017.6 (v15.6). --- include/MUtils/Version.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 8bfd9e5..9c6d11d 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,13 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1912) + #if (_MSC_VER == 1913) + #if((_MSC_FULL_VER >= 191326128) && (_MSC_FULL_VER <= 191326128)) + "MSVC 2017.6"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1912) #if((_MSC_FULL_VER >= 191225830) && (_MSC_FULL_VER <= 191225835)) "MSVC 2017.5"; #else