From f94465534b2f1682ab90dbdb5e5bb30affbf7de9 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Tue, 12 Aug 2014 10:34:28 +0200 Subject: [PATCH] Update for MSVC 14 CTP2 - update the last tested version to suppress the "unknown compiler version" warning spam - fix a comment still mentioning version 18 instead of 19 - with CTP2, MSVC 14 is now officially 2014, which is now reflected in the comment as with the other versions --- include/boost/config/compiler/visualc.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index cef7a4b7..6245a051 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -168,7 +168,7 @@ # define BOOST_NO_CXX11_DECLTYPE_N3276 #endif -// C++11 features supported by VC++ 14 CTP1 +// C++11 features supported by VC++ 14 (aka 2014) CTP1 // Because the CTP is unsupported, unrelease, and only alpha quality, // it is only supported if BOOST_MSVC_ENABLE_2014_JUN_CTP is defined. // @@ -261,8 +261,8 @@ #endif // -// last known and checked version is 18.00.21730.1 (VC14 CTP1): -#if (_MSC_VER > 1800 && _MSC_FULL_VER > 190021730) +// last known and checked version is 19.00.21901.1 (VC14 CTP2): +#if (_MSC_VER > 1800 && _MSC_FULL_VER > 190021901) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else