Home
last modified time | relevance | path

Searched refs:is_reference_to_function_pointer (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/python/test/
Dindirect_traits_test.cpp31 BOOST_MPL_ASSERT_NOT((is_reference_to_function_pointer<int (&)()>));
32 BOOST_MPL_ASSERT_NOT((is_reference_to_function_pointer<int (*)()>));
33 BOOST_MPL_ASSERT_NOT((is_reference_to_function_pointer<int&>));
34 BOOST_MPL_ASSERT((is_reference_to_function_pointer<int (*&)()>));
35 BOOST_MPL_ASSERT((is_reference_to_function_pointer<int (*const&)()>));
36 BOOST_MPL_ASSERT_NOT((is_reference_to_function_pointer<pmf>));
/third_party/boost/boost/detail/
Dindirect_traits.hpp100 struct is_reference_to_function_pointer struct