From 2393c65640bfc382cc6501bf03e6788cbeff0ecf Mon Sep 17 00:00:00 2001 From: Lars Viklund Date: Tue, 2 Jul 2013 01:09:47 +0200 Subject: [PATCH 4/6] Boost.MPL treat MSVC 1800 like 1700 --- boost/mpl/assert.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boost/mpl/assert.hpp b/boost/mpl/assert.hpp index 2439731..691283d 100644 --- a/boost/mpl/assert.hpp +++ b/boost/mpl/assert.hpp @@ -34,7 +34,7 @@ #include // make sure 'size_t' is placed into 'std' #include -#if BOOST_WORKAROUND(BOOST_MSVC, == 1700) +#if BOOST_WORKAROUND(BOOST_MSVC, == 1700) || BOOST_WORKAROUND(BOOST_MSVC, == 1800) #include #endif @@ -244,7 +244,7 @@ assert_rel_arg( assert_relation ); BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE -#if BOOST_WORKAROUND(BOOST_MSVC, == 1700) +#if BOOST_WORKAROUND(BOOST_MSVC, == 1700) || BOOST_WORKAROUND(BOOST_MSVC, == 1800) // BOOST_MPL_ASSERT((pred)) -- 1.8.3.msysgit.0