From 7b562f9c828b6ae09fcd3652afbf8a57a6ac1612 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Thu, 7 Dec 2017 18:38:18 +0100 Subject: [PATCH] + fix: add version info for VS2017 v.15.5 --- src/Version.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Version.h b/src/Version.h index 457fb37d2..a30283509 100644 --- a/src/Version.h +++ b/src/Version.h @@ -58,7 +58,11 @@ // Compiler specific #if defined(_MSC_VER) - #if (_MSC_VER >= 1911) + #if (_MSC_VER >= 1912) + #if(_MSC_FULL_VER >= 191225830) + #define VER_CPL "Microsoft Visual C++ 2017 Version 15.5" + #endif + #elif (_MSC_VER >= 1911) #if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547)) #define VER_CPL "Microsoft Visual C++ 2017 Version 15.4" #elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508))