Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53270 - branches/release/libs/algorithm/minmax/test
From: steven_at_[hidden]
Date: 2009-05-25 21:17:08


Author: steven_watanabe
Date: 2009-05-25 21:17:07 EDT (Mon, 25 May 2009)
New Revision: 53270
URL: http://svn.boost.org/trac/boost/changeset/53270

Log:
Merge [53062] from the trunk
Text files modified:
   branches/release/libs/algorithm/minmax/test/minmax_test.cpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: branches/release/libs/algorithm/minmax/test/minmax_test.cpp
==============================================================================
--- branches/release/libs/algorithm/minmax/test/minmax_test.cpp (original)
+++ branches/release/libs/algorithm/minmax/test/minmax_test.cpp 2009-05-25 21:17:07 EDT (Mon, 25 May 2009)
@@ -54,23 +54,23 @@
   less_count<Value> lc(counter);
 
   // Test functionality
- tuple<Value const&, Value const&> result1 = minmax(zero, one);
+ tuple<Value const&, Value const&> result1 = boost::minmax(zero, one);
   BOOST_CHECK_EQUAL( get<0>(result1), zero );
   BOOST_CHECK_EQUAL( get<1>(result1), one );
 
- tuple<Value const&, Value const&> result2 = minmax(one, zero);
+ tuple<Value const&, Value const&> result2 = boost::minmax(one, zero);
   BOOST_CHECK_EQUAL( get<0>(result2), zero );
   BOOST_CHECK_EQUAL( get<1>(result2), one );
   
   // Test functionality and number of comparisons
   lc.reset();
- tuple<Value const&, Value const&> result3 = minmax(zero, one, lc );
+ tuple<Value const&, Value const&> result3 = boost::minmax(zero, one, lc );
   BOOST_CHECK_EQUAL( get<0>(result3), zero );
   BOOST_CHECK_EQUAL( get<1>(result3), one );
   BOOST_CHECK_EQUAL( counter, 1 );
 
   lc.reset();
- tuple<Value const&, Value const&> result4 = minmax(one, zero, lc );
+ tuple<Value const&, Value const&> result4 = boost::minmax(one, zero, lc );
   BOOST_CHECK_EQUAL( get<0>(result4), zero );
   BOOST_CHECK_EQUAL( get<1>(result4), one );
   BOOST_CHECK_EQUAL( counter, 1);


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