From 761ebcfe128953ad4a79f22fca2770d7cfe07bcf Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Tue, 19 Nov 2019 15:20:57 +0100 Subject: [PATCH] + fix: VS2017 compiler version --- src/Version.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Version.h b/src/Version.h index a7750953b..a12960877 100644 --- a/src/Version.h +++ b/src/Version.h @@ -96,8 +96,10 @@ #define VER_CPL MS Visual C++ 2019 v16.0.Prev(1-4) #endif #elif (_MSC_VER == 1916) - #if(_MSC_FULL_VER >= 191627032) - #define VER_CPL MS Visual C++ 2017 v15.9.14 + #if(_MSC_FULL_VER >= 191627034) + #define VER_CPL MS Visual C++ 2017 v15.9.(16-17) + #elif(_MSC_FULL_VER >= 191627032) + #define VER_CPL MS Visual C++ 2017 v15.9.(14-15) #elif(_MSC_FULL_VER >= 191627031) #define VER_CPL MS Visual C++ 2017 v15.9.(12-13) #elif(_MSC_FULL_VER >= 191627030)