From b258a435ccc38305bf2061e16627a3583222a38e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 15 Sep 2006 16:45:19 +0000 Subject: [PATCH] Stop relying on new concept check facilities that aren't in 1.34.0 [SVN r35128] --- test/permutation_iterator_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/permutation_iterator_test.cpp b/test/permutation_iterator_test.cpp index abd1046..7b4c264 100644 --- a/test/permutation_iterator_test.cpp +++ b/test/permutation_iterator_test.cpp @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include #include @@ -44,11 +44,11 @@ void permutation_test() typedef boost::permutation_iterator< element_range_type::const_iterator, index_type::iterator > permutation_const_type; - BOOST_CONCEPT_ASSERT(( + boost::function_requires< boost_concepts::InteroperableIteratorConcept< permutation_type , permutation_const_type - >)); + > >(); BOOST_CHECK( it == begin ); BOOST_CHECK( it != end );