From 26258e676dc555ea80d78fa6dd0a397eaf44f2b8 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Mon, 20 Jul 2015 19:54:41 +0200 Subject: [PATCH 1/2] Update for VS 2015 RTM Now that the final version has been released, I don't think the warning spam for every compiler update is necessary anymore. Boost builds successfully with the RTM version (except for Locale, which doesn't build at all currently). --- include/boost/config/compiler/visualc.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 79c009ae..ef00359f 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -284,8 +284,8 @@ #endif // -// last known and checked version is 19.00.22816 (VC++ 2015 RC): -#if (_MSC_VER > 1800 && _MSC_FULL_VER > 190022816) +// last known and checked version is 19.00.23107 (VC++ 2015 RTM): +#if (_MSC_VER > 1900) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else From 5dff05e8d9d22174386ce2673ca57258bc32d8d9 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Tue, 21 Jul 2015 00:21:12 +0200 Subject: [PATCH 2/2] Fix compiler version number in comment --- include/boost/config/compiler/visualc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index ef00359f..1c1a7a6b 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -284,7 +284,7 @@ #endif // -// last known and checked version is 19.00.23107 (VC++ 2015 RTM): +// last known and checked version is 19.00.23026 (VC++ 2015 RTM): #if (_MSC_VER > 1900) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results"