forked from boostorg/type_traits
Conditionally stop using outdated msvc workarounds.
This commit is contained in:
@ -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>
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
namespace boost {
|
||||
|
||||
#ifdef BOOST_MSVC
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1900)
|
||||
|
||||
namespace detail{
|
||||
|
||||
|
Reference in New Issue
Block a user