// (C) Copyright John Maddock 2015. // Use, modification and distribution are subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt). // // See http://www.boost.org/libs/type_traits for most recent version including documentation. #ifndef BOOST_TT_IS_DESTRUCTIBLE_HPP_INCLUDED #define BOOST_TT_IS_DESTRUCTIBLE_HPP_INCLUDED #include // size_t #include #include #if !defined(BOOST_NO_CXX11_DECLTYPE) && !BOOST_WORKAROUND(BOOST_MSVC, < 1800) #include #include namespace boost{ namespace detail{ struct is_destructible_imp { template().~T())> static boost::type_traits::yes_type test(int); template static boost::type_traits::no_type test(...); }; } template struct is_destructible : public integral_constant(0)) == sizeof(boost::type_traits::yes_type)>{}; #else #include #include namespace boost{ // We don't know how to implement this: template struct is_destructible : public integral_constant::value || is_class::value>{}; #endif template <> struct is_destructible : public false_type{}; template <> struct is_destructible : public false_type{}; template <> struct is_destructible : public false_type{}; template <> struct is_destructible : public false_type{}; template struct is_destructible : public is_destructible{}; #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES template struct is_destructible : public is_destructible{}; #endif template struct is_destructible : public is_destructible{}; template struct is_destructible : public is_destructible{}; } // namespace boost #endif // BOOST_TT_IS_DESTRUCTIBLE_HPP_INCLUDED