Boost logo

Boost-Commit :

From: eric_at_[hidden]
Date: 2007-10-24 11:00:20


Author: eric_niebler
Date: 2007-10-24 11:00:20 EDT (Wed, 24 Oct 2007)
New Revision: 40418
URL: http://svn.boost.org/trac/boost/changeset/40418

Log:
s/boost_range_begin/range_begin/
Text files modified:
   trunk/libs/foreach/doc/foreach.qbk | 14 +++++++-------
   1 files changed, 7 insertions(+), 7 deletions(-)

Modified: trunk/libs/foreach/doc/foreach.qbk
==============================================================================
--- trunk/libs/foreach/doc/foreach.qbk (original)
+++ trunk/libs/foreach/doc/foreach.qbk 2007-10-24 11:00:20 EDT (Wed, 24 Oct 2007)
@@ -208,15 +208,15 @@
             /* ... implementation ... */
         };
 
- // Add overloads of boost_range_begin() and boost_range_end() in the
+ // Add overloads of range_begin() and range_end() in the
         // same namespace as sub_string, to be found by Argument-Dependent Lookup.
 
- inline std::string::iterator boost_range_begin( sub_string & x )
+ inline std::string::iterator range_begin( sub_string & x )
         {
             return x.begin;
         }
 
- inline std::string::iterator boost_range_end( sub_string & x )
+ inline std::string::iterator range_end( sub_string & x )
         {
             return x.end;
         }
@@ -224,12 +224,12 @@
         // Also add overloads for const sub_strings. Note we use the conversion
         // from string::iterator to string::const_iterator here.
 
- inline std::string::const_iterator boost_range_begin( sub_string const & x )
+ inline std::string::const_iterator range_begin( sub_string const & x )
         {
             return x.begin;
         }
 
- inline std::string::const_iterator boost_range_end( sub_string const & x )
+ inline std::string::const_iterator range_end( sub_string const & x )
         {
             return x.end;
         }
@@ -237,9 +237,9 @@
 
     namespace boost
     {
- // specialize rannge_iterator and range_const_iterator in namespace boost
+ // specialize range_mutable_iterator and range_const_iterator in namespace boost
         template<>
- struct range_iterator< my::sub_string >
+ struct range_mutable_iterator< my::sub_string >
         {
             typedef std::string::iterator type;
         };


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