From 12cf02586c1144b200a527964e39899eb17e6252 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 26 Aug 2006 14:28:38 +0000 Subject: [PATCH] Remove tabs [SVN r34957] --- test/iterator_range.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/iterator_range.cpp b/test/iterator_range.cpp index 20696aa..7e036ab 100755 --- a/test/iterator_range.cpp +++ b/test/iterator_range.cpp @@ -26,7 +26,7 @@ using namespace boost; using namespace std; - + void check_reference_type(); void check_iterator_range() @@ -94,7 +94,7 @@ void check_iterator_range() rrr = make_iterator_range( rrr, -1, 1 ); 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::type citer_type; typedef iterator_range riter_type; riter_type a_riter( make_iterator_range( a_cont ) ); - a_riter.front(); - a_riter.back(); - int i = a_riter[0]; - return i; + a_riter.front(); + a_riter.back(); + int i = a_riter[0]; + return i; }