From 31a4fe3b87962e1619dfb87c8aac74b14b56c2f6 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Thu, 10 May 2018 18:04:02 +0200 Subject: [PATCH] Added support for Visual Studio 2017.7 (v15.7.0). --- 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 a2a86c5..513def3 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 == 1913) + #if (_MSC_VER == 1914) + #if((_MSC_FULL_VER >= 191426428) && (_MSC_FULL_VER <= 191426428)) + "MSVC 2017.7"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1913) #if((_MSC_FULL_VER >= 191326128) && (_MSC_FULL_VER <= 191326132)) "MSVC 2017.6"; #else