From 6482dbc52e4048e3e70bd0a4a5333788df6ec8b9 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sun, 29 Aug 2021 17:18:03 +0200 Subject: [PATCH] Added support for Visual Studio 2019.11 (v16.11). --- 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 063d615..514dcea 100644 --- a/include/MUtils/Version.h +++ b/include/MUtils/Version.h @@ -68,7 +68,11 @@ namespace MUtils #endif #elif defined(_MSC_VER) #if (_MSC_VER == 1929) - "MSVC 2019.10"; + #if (_MSC_FULL_VER < 192930133) + "MSVC 2019.10"; + #else + "MSVC 2019.11"; + #endif #elif (_MSC_VER == 1928) #if (_MSC_FULL_VER < 192829910) "MSVC 2019.8";