From 8c866a6027fac3ae7177391aca09f8ea1d1e0240 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 3 Jan 2020 01:13:23 +0100 Subject: [PATCH] Added support for Visual Studio 2019.4 (v16.4). --- 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 b727ae0..73e8c72 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 == 1923) + #if (_MSC_VER == 1924) + #if((_MSC_FULL_VER >= 192428314) && (_MSC_FULL_VER <= 192428314)) + "MSVC 2019.4"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1923) #if((_MSC_FULL_VER >= 192328105) && (_MSC_FULL_VER <= 192328105)) "MSVC 2019.3"; #else -- 2.11.0