From 82c81f5c42f2035df17cb713a403ab9ccb832978 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Mon, 26 Nov 2018 20:51:40 +0100 Subject: [PATCH] Added support for Visual Studio 2017.9 (v15.9.2). --- 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 bfbd2f2..b810b34 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 == 1915) + #if (_MSC_VER == 1916) + #if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627024)) + "MSVC 2017.9"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1915) #if((_MSC_FULL_VER >= 191526726) && (_MSC_FULL_VER <= 191526732)) "MSVC 2017.8"; #else