Disable has_nothrow_destructor for MSVC as appears not to work at present.

This commit is contained in:
jzmaddock
2015-06-20 17:50:10 +01:00
parent f5592c72c0
commit ebf5ae3b76

View File

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