Boost logo

Boost-Commit :

From: dannyh_at_[hidden]
Date: 2007-07-03 19:30:59


Author: dannyh
Date: 2007-07-03 19:30:59 EDT (Tue, 03 Jul 2007)
New Revision: 7352
URL: http://svn.boost.org/trac/boost/changeset/7352

Log:
changed explore::iterator_range to boost::iterator_range for print, since the explore wrapper is not needed there.

Text files modified:
   sandbox/explore/libs/explore/test/custom_format_simple.cpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: sandbox/explore/libs/explore/test/custom_format_simple.cpp
==============================================================================
--- sandbox/explore/libs/explore/test/custom_format_simple.cpp (original)
+++ sandbox/explore/libs/explore/test/custom_format_simple.cpp 2007-07-03 19:30:59 EDT (Tue, 03 Jul 2007)
@@ -46,7 +46,7 @@
 
     str_out.str("");
 
- explore::print(explore::make_iterator_range(vi.begin(), ++(++vi.begin())), str_out, basic_lg_format(), explore::default_container_policy());
+ explore::print(boost::make_iterator_range(vi.begin(), ++(++vi.begin())), str_out, basic_lg_format(), explore::default_container_policy());
     BOOST_CHECK_EQUAL(str_out.str(), "<=1#2=>");
 
     str_out.str("");
@@ -116,7 +116,7 @@
 
     str_out.str("");
 
- explore::print(explore::make_iterator_range(mis.begin(), ++(++mis.begin())), str_out, basic_lg_format(), explore::default_container_policy());
+ explore::print(boost::make_iterator_range(mis.begin(), ++(++mis.begin())), str_out, basic_lg_format(), explore::default_container_policy());
     BOOST_CHECK_EQUAL(str_out.str(), "<=<=1#first=>#<=2#second=>=>");
 }
 


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