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

Modified Files:
        map.hpp set.hpp 
Log Message:
no message

Index: map.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/interprocess/containers/map.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- map.hpp     12 Jun 2007 17:07:08 -0000      1.4
+++ map.hpp     23 Jun 2007 12:53:00 -0000      1.5
@@ -55,6 +55,7 @@
 #include <functional>
 #include <memory>
 #include <boost/interprocess/containers/detail/tree.hpp>
+#include <boost/type_traits/has_trivial_destructor.hpp>
 #include <boost/interprocess/detail/mpl.hpp>
 #include <boost/interprocess/detail/move.hpp>
 
@@ -90,7 +91,7 @@
    private:
    typedef detail::rbtree<Key, 
                            std::pair<const Key, T>, 
-                           select1st< std::pair<const Key, T> >, 
+                           detail::select1st< std::pair<const Key, T> >, 
                            Pred, 
                            Alloc> tree_t;
    tree_t m_tree;  // red-black tree representing map
@@ -730,7 +731,7 @@
    private:
    typedef detail::rbtree<Key, 
                            std::pair<const Key, T>, 
-                           select1st< std::pair<const Key, T> >, 
+                           detail::select1st< std::pair<const Key, T> >, 
                            Pred, 
                            Alloc> tree_t;
    tree_t m_tree;  // red-black tree representing map

Index: set.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/interprocess/containers/set.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- set.hpp     12 Jun 2007 17:07:08 -0000      1.6
+++ set.hpp     23 Jun 2007 12:53:00 -0000      1.7
@@ -86,7 +86,7 @@
    /// @cond
    private:
    typedef detail::rbtree<T, T, 
-                     identity<T>, Pred, Alloc> tree_t;
+                     detail::identity<T>, Pred, Alloc> tree_t;
    tree_t m_tree;  // red-black tree representing set
    /// @endcond
 
@@ -566,7 +566,7 @@
    /// @cond
    private:
    typedef detail::rbtree<T, T, 
-                     identity<T>, Pred, Alloc> tree_t;
+                     detail::identity<T>, Pred, Alloc> tree_t;
    tree_t m_tree;  // red-black tree representing multiset
    /// @endcond
 


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