From 5ae4f848b3f449e040555ee3a6617b938d9e968a Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 11 Dec 2012 16:56:30 +0000 Subject: [PATCH] Remove tabs from Boost.Algorithm tests. [SVN r81857] --- test/copy_if_test1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/copy_if_test1.cpp b/test/copy_if_test1.cpp index cc3c7ae..1a16729 100644 --- a/test/copy_if_test1.cpp +++ b/test/copy_if_test1.cpp @@ -42,7 +42,7 @@ void test_sequence ( Container const &c ) { ba::copy_if ( c, back_inserter ( v ), is_false); BOOST_CHECK ( v.size () == 0 ); -// All the elements +// All the elements v.clear (); ba::copy_if ( c.begin (), c.end (), back_inserter ( v ), is_true); BOOST_CHECK ( v.size () == c.size ()); @@ -54,7 +54,7 @@ void test_sequence ( Container const &c ) { BOOST_CHECK ( v.size () == c.size ()); BOOST_CHECK ( std::equal ( c.begin (), c.end (), v.begin ())); -// Some of the elements +// Some of the elements v.clear (); ba::copy_if ( c.begin (), c.end (), back_inserter ( v ), is_even ); BOOST_CHECK ( v.size () == std::count_if ( c.begin (), c.end (), is_even ));