From 6b258e830babedb076e3ae60ca2ef988d7fc97ac Mon Sep 17 00:00:00 2001 From: GreyMerlin Date: Wed, 12 Dec 2018 12:19:28 -0800 Subject: [PATCH] Update Boost version checking for VS2017 version 15.9.2 --HG-- branch : stable --- Externals/boost/boost/config/compiler/visualc.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Externals/boost/boost/config/compiler/visualc.hpp b/Externals/boost/boost/config/compiler/visualc.hpp index 32eaaaccc..ae4d90522 100644 --- a/Externals/boost/boost/config/compiler/visualc.hpp +++ b/Externals/boost/boost/config/compiler/visualc.hpp @@ -321,7 +321,8 @@ // VS2017 Version 15.6.1 (cl compiler version 19.13.26128) updated _MSC_VER to 1913 - BillGord 06 Mar 2018 // VS2017 Version 15.7.1 (cl compiler version 19.14.26428.1) updated _MSC_VER to 1914 - BillGord 20 May 2018 // VS2017 Version 15.8.0 (cl compiler version 19.15.26726) updated _MSC_VER to 1915 - BillGord 15 Aug 2018 -#if (_MSC_VER > 1915) +// VS2017 Version 15.9.2 (cl compiler version 19.16.27024.1) updated _MSC_VER to 1916 - BillGord 09 Dec 2018 +#if (_MSC_VER > 1916) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else -- 2.11.0