Remove tabs

[SVN r34957]
This commit is contained in:
Daniel James
2006-08-26 14:28:38 +00:00
parent ee024f588b
commit 12cf02586c

View File

@ -94,7 +94,7 @@ void check_iterator_range()
rrr = make_iterator_range( rrr, -1, 1 ); rrr = make_iterator_range( rrr, -1, 1 );
BOOST_CHECK( rrr == str ); BOOST_CHECK( rrr == str );
check_reference_type(); check_reference_type();
} }
@ -124,10 +124,10 @@ int test_iter_range( Container& a_cont )
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<Container>::type citer_type; typedef BOOST_DEDUCED_TYPENAME range_result_iterator<Container>::type citer_type;
typedef iterator_range<citer_type> riter_type; typedef iterator_range<citer_type> riter_type;
riter_type a_riter( make_iterator_range( a_cont ) ); riter_type a_riter( make_iterator_range( a_cont ) );
a_riter.front(); a_riter.front();
a_riter.back(); a_riter.back();
int i = a_riter[0]; int i = a_riter[0];
return i; return i;
} }