// Boost.TypeErasure library // // Copyright 2012 Steven Watanabe // // Distributed under 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) // // $Id: check_call.hpp 83321 2013-03-05 21:27:18Z steven_watanabe $ #if !defined(BOOST_PP_IS_ITERATING) #ifndef BOOST_TYPE_ERASURE_DETAIL_CHECK_CALL_HPP_INCLUDED #define BOOST_TYPE_ERASURE_DETAIL_CHECK_CALL_HPP_INCLUDED #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace type_erasure { namespace detail { template struct check_call : ::boost::mpl::false_ {}; template struct qualified_placeholder { typedef void type; }; template struct qualified_placeholder { typedef typename ::boost::type_erasure::placeholder_of::type placeholder; typedef typename ::boost::remove_reference::type unref; typedef typename ::boost::mpl::if_< ::boost::is_const, const unref, unref >::type add_const; typedef typename ::boost::mpl::if_< ::boost::is_reference, placeholder, add_const& >::type type; }; #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES template struct qualified_placeholder { typedef typename ::boost::type_erasure::placeholder_of::type placeholder; typedef placeholder&& type; }; #endif template struct check_placeholder_arg_impl : ::boost::mpl::false_ {}; template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; #endif template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; template struct check_placeholder_arg_impl : ::boost::mpl::true_ {}; #endif template struct check_placeholder_arg : check_placeholder_arg_impl< P, typename ::boost::type_erasure::detail::qualified_placeholder::type >::type {}; #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && \ ((defined(__GNUC__) && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 6))) || \ defined(__MINGW32__) || defined(__MINGW64__)) #define BOOST_TYPE_ERASURE_BROKEN_RVALUE_IS_CONVERTIBLE #endif template struct check_arg { typedef typename ::boost::mpl::eval_if< is_placeholder< typename ::boost::remove_cv< typename ::boost::remove_reference::type >::type >, ::boost::type_erasure::detail::check_placeholder_arg, #ifdef BOOST_TYPE_ERASURE_BROKEN_RVALUE_IS_CONVERTIBLE ::boost::mpl::true_ #else ::boost::is_convertible #endif >::type type; }; #define BOOST_PP_FILENAME_1 #define BOOST_PP_ITERATION_LIMITS (0, BOOST_TYPE_ERASURE_MAX_ARITY) #include BOOST_PP_ITERATE() } } } #endif #else #define N BOOST_PP_ITERATION() #define BOOST_TYPE_ERASURE_CHECK_ARG(z, n, data) \ typedef typename ::boost::type_erasure::detail::check_arg< \ BOOST_PP_CAT(T, n), \ BOOST_PP_CAT(U, n) \ >::type BOOST_PP_CAT(check, n); \ typedef typename ::boost::mpl::and_< \ BOOST_PP_CAT(type, n), \ BOOST_PP_CAT(check, n) \ >::type BOOST_PP_CAT(type, BOOST_PP_INC(n)); template< class R BOOST_PP_ENUM_TRAILING_PARAMS(N, class T) BOOST_PP_ENUM_TRAILING_PARAMS(N, class U) > struct check_call { typedef ::boost::mpl::true_ type0; BOOST_PP_REPEAT(N, BOOST_TYPE_ERASURE_CHECK_ARG, ~) typedef BOOST_PP_CAT(type, N) type; }; #undef N #endif