From edc89121f9ba3b4ed174bfe2ff4df1520c11fab7 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 5 Oct 2019 17:56:54 +0200 Subject: [PATCH 1/1] Added support for Visual Studio 2019.3 (v16.3). --- 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 b29b44c..c779c58 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 == 1922) + #if (_MSC_VER == 1923) + #if((_MSC_FULL_VER >= 192328105) && (_MSC_FULL_VER <= 192328105)) + "MSVC 2019.3"; + #else + #error Compiler version is not supported yet! + #endif + #elif (_MSC_VER == 1922) #if((_MSC_FULL_VER >= 192227905) && (_MSC_FULL_VER <= 192227905)) "MSVC 2019.2"; #else -- 2.11.0