Boost.Range updated unit tests.

[SVN r61648]
This commit is contained in:
Neil Groves
2010-04-28 16:11:40 +00:00
parent abc18532e4
commit 925b3ad355
14 changed files with 1008 additions and 8 deletions

View File

@ -30,8 +30,8 @@ namespace boost
inline OutputIterator
remove_copy_if(SinglePassRange& rng, OutputIterator out_it, Predicate pred)
{
boost::function_requires< SinglePassRangeConcept<SinglePassRange> >();
return std::remove_copy_if(boost::begin(rng), boost::end(rng), out_it, pred);
BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<SinglePassRange> ));
return std::remove_copy_if(boost::begin(rng), boost::end(rng), out_it, pred);
}
}