From 10276b75f055cde11ed9c9084b488269de65139d Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 13 Apr 2019 13:30:38 +0200 Subject: [PATCH] Added support for Visual Studio 2017.9 (v15.9.11) and 2019 (16.0.1). --- include/MUtils/Version.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index eaa5493..12b3464 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,8 +67,14 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1916) - #if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627027)) + #if (_MSC_VER == 1920) + #if((_MSC_FULL_VER >= 192027508) && (_MSC_FULL_VER <= 192027508)) + "MSVC 2019.0"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1916) + #if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627030)) "MSVC 2017.9"; #else #error Compiler version is not supported yet! -- 2.11.4.GIT