Update of /cvsroot/boost/boost/boost/interprocess/containers/detail
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29744/containers/detail

Modified Files:
        flat_tree.hpp 
Log Message:
no message

Index: flat_tree.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/interprocess/containers/detail/flat_tree.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- flat_tree.hpp       12 Jun 2007 17:07:09 -0000      1.6
+++ flat_tree.hpp       23 Jun 2007 12:52:18 -0000      1.7
@@ -37,7 +37,6 @@
 
 #include <boost/interprocess/containers/vector.hpp>
 #include <boost/interprocess/detail/utilities.hpp>
-#include <boost/iterator/reverse_iterator.hpp>
 #include <boost/interprocess/detail/move.hpp>
 #include <boost/type_traits/has_trivial_destructor.hpp>
 #include <algorithm>
@@ -119,8 +118,8 @@
    typedef typename allocator_type::difference_type   difference_type;
    typedef typename vector_t::iterator                iterator;
    typedef typename vector_t::const_iterator          const_iterator;
-   typedef boost::reverse_iterator<iterator>          reverse_iterator;
-   typedef boost::reverse_iterator<const_iterator>    const_reverse_iterator;
+   typedef std::reverse_iterator<iterator>          reverse_iterator;
+   typedef std::reverse_iterator<const_iterator>    const_reverse_iterator;
    
 
    // allocation/deallocation
@@ -718,8 +717,8 @@
 struct has_trivial_destructor_after_move<detail::flat_tree<K, V, KOV, C, A> >
 {
    enum {   value = 
-               has_trivial_destructor<A>::value &&
-               has_trivial_destructor<C>::value  };
+             has_trivial_destructor<A>::value &&
+             has_trivial_destructor<C>::value  };
 };
 
 }  //namespace interprocess {


-------------------------------------------------------------------------
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