From e5211990158dfed6d8011001d50deb39c5f1b855 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Wed, 20 May 2020 22:19:50 +0200 Subject: [PATCH] Added support for Visual Studio 2019.6 (v16.6). --- include/MUtils/Version.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/MUtils/Version.h b/include/MUtils/Version.h index 1d4cb79..038cd4b 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -67,7 +67,9 @@ namespace MUtils #error Compiler is not supported! #endif #elif defined(_MSC_VER) - #if (_MSC_VER == 1925) + #if (_MSC_VER == 1926) + "MSVC 2019.6"; + #elif (_MSC_VER == 1925) "MSVC 2019.5"; #elif (_MSC_VER == 1924) "MSVC 2019.4"; -- 2.11.0