// (C) Copyright Runar Undheim, Robert Ramey & John Maddock 2008. // 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_HAS_NEW_OPERATOR_HPP_INCLUDED #define BOOST_TT_HAS_NEW_OPERATOR_HPP_INCLUDED #include // std::nothrow_t #include // std::size_t #include #include #include // should be the last #include #include namespace boost { namespace detail { template struct test; template struct has_new_operator_impl { template static type_traits::yes_type check_sig1( U*, test< void *(*)(std::size_t), &U::operator new >* = NULL ); template static type_traits::no_type check_sig1(...); template static type_traits::yes_type check_sig2( U*, test< void *(*)(std::size_t, const std::nothrow_t&), &U::operator new >* = NULL ); template static type_traits::no_type check_sig2(...); template static type_traits::yes_type check_sig3( U*, test< void *(*)(std::size_t, void*), &U::operator new >* = NULL ); template static type_traits::no_type check_sig3(...); template static type_traits::yes_type check_sig4( U*, test< void *(*)(std::size_t), &U::operator new[] >* = NULL ); template static type_traits::no_type check_sig4(...); template static type_traits::yes_type check_sig5( U*, test< void *(*)(std::size_t, const std::nothrow_t&), &U::operator new[] >* = NULL ); template static type_traits::no_type check_sig5(...); template static type_traits::yes_type check_sig6( U*, test< void *(*)(std::size_t, void*), &U::operator new[] >* = NULL ); template static type_traits::no_type check_sig6(...); // GCC2 won't even parse this template if we embed the computation // of s1 in the computation of value. #ifdef __GNUC__ BOOST_STATIC_CONSTANT(unsigned, s1 = sizeof(has_new_operator_impl::template check_sig1(0))); BOOST_STATIC_CONSTANT(unsigned, s2 = sizeof(has_new_operator_impl::template check_sig2(0))); BOOST_STATIC_CONSTANT(unsigned, s3 = sizeof(has_new_operator_impl::template check_sig3(0))); BOOST_STATIC_CONSTANT(unsigned, s4 = sizeof(has_new_operator_impl::template check_sig4(0))); BOOST_STATIC_CONSTANT(unsigned, s5 = sizeof(has_new_operator_impl::template check_sig5(0))); BOOST_STATIC_CONSTANT(unsigned, s6 = sizeof(has_new_operator_impl::template check_sig6(0))); #else #if BOOST_WORKAROUND(BOOST_MSVC_FULL_VER, >= 140050000) #pragma warning(push) #pragma warning(disable:6334) #endif BOOST_STATIC_CONSTANT(unsigned, s1 = sizeof(check_sig1(0))); BOOST_STATIC_CONSTANT(unsigned, s2 = sizeof(check_sig2(0))); BOOST_STATIC_CONSTANT(unsigned, s3 = sizeof(check_sig3(0))); BOOST_STATIC_CONSTANT(unsigned, s4 = sizeof(check_sig4(0))); BOOST_STATIC_CONSTANT(unsigned, s5 = sizeof(check_sig5(0))); BOOST_STATIC_CONSTANT(unsigned, s6 = sizeof(check_sig6(0))); #if BOOST_WORKAROUND(BOOST_MSVC_FULL_VER, >= 140050000) #pragma warning(pop) #endif #endif BOOST_STATIC_CONSTANT(bool, value = (::boost::type_traits::ice_or< (s1 == sizeof(type_traits::yes_type)), (s2 == sizeof(type_traits::yes_type)), (s3 == sizeof(type_traits::yes_type)), (s4 == sizeof(type_traits::yes_type)), (s5 == sizeof(type_traits::yes_type)), (s6 == sizeof(type_traits::yes_type)) >::value) ); }; } // namespace detail BOOST_TT_AUX_BOOL_TRAIT_DEF1(has_new_operator,T,::boost::detail::has_new_operator_impl::value) } // namespace boost #include #endif // BOOST_TT_HAS_NEW_OPERATOR_HPP_INCLUDED