From 358e132475ce58caceff8183d739fc56e1d64067 Mon Sep 17 00:00:00 2001 From: Lars Viklund Date: Tue, 2 Jul 2013 00:58:17 +0200 Subject: [PATCH 1/6] Boost.Config MSVC version increase to 1800 --- boost/config/compiler/visualc.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/boost/config/compiler/visualc.hpp b/boost/config/compiler/visualc.hpp index 8f7432d..a26a3fd 100644 --- a/boost/config/compiler/visualc.hpp +++ b/boost/config/compiler/visualc.hpp @@ -304,7 +304,9 @@ # elif _MSC_VER < 1700 # define BOOST_COMPILER_VERSION 10.0 # elif _MSC_VER < 1800 -# define BOOST_COMPILER_VERSION 11.0 +# define BOOST_COMPILER_VERSION 11.0 +# elif _MSC_VER < 1900 +# define BOOST_COMPILER_VERSION 12.0 # else # define BOOST_COMPILER_VERSION _MSC_VER # endif @@ -314,8 +316,8 @@ #endif // -// last known and checked version is 1700 (VC11, aka 2011): -#if (_MSC_VER > 1700) +// last known and checked version is 1800.20617 (VC12 Preview, aka 2013 Preview): +#if (_MSC_VER > 1800 && _MSC_FULL_VER > 180020617) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else -- 1.8.3.msysgit.0