Update of /cvsroot/boost/boost/boost/circular_buffer
In directory 
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25866/boost/circular_buffer

Modified Files:
        base.hpp 
Log Message:
circular_buffer: reverse_iterator typedef fix

Index: base.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/circular_buffer/base.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- base.hpp    21 May 2007 11:47:55 -0000      1.2
+++ base.hpp    23 May 2007 14:46:32 -0000      1.3
@@ -110,14 +110,10 @@
     typedef cb_details::iterator< circular_buffer<T, Alloc>, 
cb_details::nonconst_traits<Alloc> > iterator;
 
     //! A const iterator used to iterate backwards through a 
<code>circular_buffer</code>.
-    typedef reverse_iterator<const_iterator> const_reverse_iterator;
+    typedef boost::reverse_iterator<const_iterator> const_reverse_iterator;
 
     //! An iterator used to iterate backwards through a 
<code>circular_buffer</code>.
-#if BOOST_WORKAROUND(__GNUC__, > 4) || BOOST_WORKAROUND(__GNUC__, == 4 && 
(__GNUC_MINOR__ >= 3))
-    typedef ::reverse_iterator<iterator> reverse_iterator;
-#else
-    typedef reverse_iterator<iterator> reverse_iterator;
-#endif
+    typedef boost::reverse_iterator<iterator> reverse_iterator;
 
 // Container specific types
 


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to