From a37a1007d2902041b8caae8ec49caf03050c3eb2 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Wed, 18 Nov 2020 23:49:56 +0100 Subject: [PATCH] Added support for Visual Studio 2019.8 (v16.8) --- include/MUtils/Version.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 038cd4b..9e197e1 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,11 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1926) + #if (_MSC_VER == 1928) + "MSVC 2019.8"; + #elif (_MSC_VER == 1927) + "MSVC 2019.7"; + #elif (_MSC_VER == 1926) "MSVC 2019.6"; #elif (_MSC_VER == 1925) "MSVC 2019.5";