// Copyright David Abrahams 2003. Permission to copy, use, // modify, sell and distribute this software is granted provided this // copyright notice appears in all copies. This software is provided // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. #include #include #include struct X { int a; }; #ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION namespace boost { namespace detail { template<> struct iterator_traits : ptr_iter_traits {}; }} #endif struct Xiter : boost::iterator_adaptor { Xiter(); Xiter(X* p) : boost::iterator_adaptor(p) {} }; void take_xptr(X*) {} void operator_arrow_test() { // check that the operator-> result is a pointer for lvalue iterators X x; take_xptr(Xiter(&x).operator->()); } template struct static_assert_same #ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION { template static int check(V, V); enum { value = sizeof(check(boost::type(), boost::type())) }; } #endif ; #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION template struct static_assert_same { enum { value }; }; #endif template struct static_assert_min_cat : static_assert_same< typename boost::detail::minimum_category::type, Min > {}; void category_test() { using namespace boost; using namespace boost::detail; BOOST_STATIC_ASSERT(( !is_tag< input_output_iterator_tag , std::input_iterator_tag>::value)); BOOST_STATIC_ASSERT(( !is_tag< input_output_iterator_tag , std::output_iterator_tag>::value)); BOOST_STATIC_ASSERT(( is_tag< std::input_iterator_tag , input_output_iterator_tag>::value)); BOOST_STATIC_ASSERT(( is_tag< std::output_iterator_tag , input_output_iterator_tag>::value)); BOOST_STATIC_ASSERT(( is_tag< input_output_iterator_tag , std::forward_iterator_tag>::value)); int test = static_assert_min_cat< std::input_iterator_tag,input_output_iterator_tag, std::input_iterator_tag >::value; test = static_assert_min_cat< input_output_iterator_tag,std::input_iterator_tag, std::input_iterator_tag >::value; test = static_assert_min_cat< input_output_iterator_tag,std::forward_iterator_tag, input_output_iterator_tag >::value; test = static_assert_min_cat< std::input_iterator_tag,std::forward_iterator_tag, std::input_iterator_tag >::value; test = static_assert_min_cat< std::input_iterator_tag,std::random_access_iterator_tag, std::input_iterator_tag >::value; test = static_assert_min_cat< std::output_iterator_tag,std::random_access_iterator_tag, std::output_iterator_tag >::value; } int main() { category_test(); operator_arrow_test(); return 0; }