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

Modified Files:
      Tag: RC_1_34_0
        hashed_index.hpp ordered_index.hpp random_access_index.hpp 
        sequenced_index.hpp 
Log Message:
merged from trunk to branch

Index: hashed_index.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_index/hashed_index.hpp,v
retrieving revision 1.4.2.3
retrieving revision 1.4.2.4
diff -u -d -r1.4.2.3 -r1.4.2.4
--- hashed_index.hpp    21 Dec 2006 12:01:01 -0000      1.4.2.3
+++ hashed_index.hpp    26 Feb 2007 09:16:36 -0000      1.4.2.4
@@ -1,4 +1,4 @@
-/* Copyright 2003-2006 Joaquín M López Muñoz.
+/* Copyright 2003-2007 Joaquín M López Muñoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -550,6 +550,11 @@
   hashed_index(
     const hashed_index<KeyFromValue,Hash,Pred,SuperMeta,TagList,Category>& x):
     super(x),
+
+#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
+    safe_super(),
+#endif
+
     key(x.key),
     hash(x.hash),
     eq(x.eq),

Index: ordered_index.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_index/ordered_index.hpp,v
retrieving revision 1.12.2.2
retrieving revision 1.12.2.3
diff -u -d -r1.12.2.2 -r1.12.2.3
--- ordered_index.hpp   19 May 2006 06:57:13 -0000      1.12.2.2
+++ ordered_index.hpp   26 Feb 2007 09:16:36 -0000      1.12.2.3
@@ -1,4 +1,4 @@
-/* Copyright 2003-2006 Joaquín M López Muñoz.
+/* Copyright 2003-2007 Joaquín M López Muñoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -467,6 +467,11 @@
   ordered_index(
     const ordered_index<KeyFromValue,Compare,SuperMeta,TagList,Category>& x):
     super(x),
+
+#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
+    safe_super(),
+#endif
+
     key(x.key),
     comp(x.comp)
   {

Index: random_access_index.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_index/random_access_index.hpp,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- random_access_index.hpp     2 Oct 2006 15:20:02 -0000       1.1.2.3
+++ random_access_index.hpp     26 Feb 2007 09:16:36 -0000      1.1.2.4
@@ -1,4 +1,4 @@
-/* Copyright 2003-2006 Joaquín M López Muñoz.
+/* Copyright 2003-2007 Joaquín M López Muñoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -596,6 +596,11 @@
 
   random_access_index(const random_access_index<SuperMeta,TagList>& x):
     super(x),
+
+#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
+    safe_super(),
+#endif
+
     ptrs(x.get_allocator(),header()->impl(),x.size())
   {
     /* The actual copying takes place in subsequent call to copy_().

Index: sequenced_index.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_index/sequenced_index.hpp,v
retrieving revision 1.10.2.3
retrieving revision 1.10.2.4
diff -u -d -r1.10.2.3 -r1.10.2.4
--- sequenced_index.hpp 2 Oct 2006 15:20:02 -0000       1.10.2.3
+++ sequenced_index.hpp 26 Feb 2007 09:16:36 -0000      1.10.2.4
@@ -1,4 +1,4 @@
-/* Copyright 2003-2006 Joaquín M López Muñoz.
+/* Copyright 2003-2007 Joaquín M López Muñoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -502,6 +502,11 @@
 
   sequenced_index(const sequenced_index<SuperMeta,TagList>& x):
     super(x)
+
+#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
+    ,safe_super()
+#endif
+
   {
     /* The actual copying takes place in subsequent call to copy_().
      */


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to