From: LoRd_MuldeR Date: Wed, 20 May 2020 20:19:50 +0000 (+0200) Subject: Added support for Visual Studio 2019.6 (v16.6). X-Git-Tag: v1.15~11 X-Git-Url: http://git.osdn.net/view?p=mutilities%2FMUtilities.git;a=commitdiff_plain;h=e5211990158dfed6d8011001d50deb39c5f1b855 Added support for Visual Studio 2019.6 (v16.6). --- 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";