Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81857 - branches/release/libs/algorithm/test
From: marshall_at_[hidden]
Date: 2012-12-11 11:56:31


Author: marshall
Date: 2012-12-11 11:56:30 EST (Tue, 11 Dec 2012)
New Revision: 81857
URL: http://svn.boost.org/trac/boost/changeset/81857

Log:
Remove tabs from Boost.Algorithm tests.
Properties modified:
   branches/release/libs/algorithm/test/copy_if_test1.cpp (contents, props changed)
Text files modified:
   branches/release/libs/algorithm/test/copy_if_test1.cpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: branches/release/libs/algorithm/test/copy_if_test1.cpp
==============================================================================
--- branches/release/libs/algorithm/test/copy_if_test1.cpp (original)
+++ branches/release/libs/algorithm/test/copy_if_test1.cpp 2012-12-11 11:56:30 EST (Tue, 11 Dec 2012)
@@ -42,7 +42,7 @@
     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 @@
     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 ));


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk