Conditionally stop using outdated msvc workarounds.

This commit is contained in:
jzmaddock
2016-05-08 18:12:57 +01:00
parent 97cea143b9
commit 4243962e40
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#include <boost/type_traits/has_trivial_destructor.hpp>
#if !defined(BOOST_NO_CXX11_NOEXCEPT) && !defined(__SUNPRO_CC) && !defined(BOOST_MSVC)
#if !defined(BOOST_NO_CXX11_NOEXCEPT) && !defined(__SUNPRO_CC) && !(defined(BOOST_MSVC) && (_MSC_FULL_VER < 190023506))
#include <boost/type_traits/declval.hpp>
#include <boost/type_traits/is_destructible.hpp>

View File

@ -18,7 +18,7 @@
namespace boost {
#ifdef BOOST_MSVC
#if BOOST_WORKAROUND(BOOST_MSVC, < 1900)
namespace detail{