*** empty log message ***

[SVN r24140]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-07-28 11:01:10 +00:00
parent e26056b475
commit 5a479378d6
5 changed files with 10 additions and 11 deletions

View File

@ -34,8 +34,8 @@ struct add_one
void check_iterator_range()
{
typedef string::iterator iterator;
typedef string::const_iterator const_iterator;
typedef iterator_range<iterator> irange;
@ -79,7 +79,7 @@ void check_iterator_range()
string res = copy_range<string>( r );
BOOST_CHECK( equal( res.begin(), res.end(), r.begin() ) );
}