From: LoRd_MuldeR Date: Fri, 9 Mar 2018 22:24:21 +0000 (+0100) Subject: Added support for Visual Studio 2017.6 (v15.6). X-Git-Tag: v1.09~5 X-Git-Url: http://git.osdn.net/view?p=mutilities%2FMUtilities.git;a=commitdiff_plain;h=d16ef6fcb297a53414a1a086a784461b90125116 Added support for Visual Studio 2017.6 (v15.6). --- 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