From d5a84818c08dac9963b5cf483802f672ede55cc5 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 19 Aug 2017 19:34:46 +0200 Subject: [PATCH] Added support for new VS2017 version. --- 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 81dd6c4..d432bdc 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -66,7 +66,13 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1910) + #if (_MSC_VER == 1911) + #if (_MSC_FULL_VER == 191125506) + static const char *const COMPILER_VERS = "MSVC 2017.3"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1910) #if ((_MSC_FULL_VER >= 191025017) && (_MSC_FULL_VER <= 191025019)) static const char *const COMPILER_VERS = "MSVC 2017.2"; #else -- 2.11.4.GIT