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

Modified Files:
        hashed_index.hpp ordered_index.hpp random_access_index.hpp 
        sequenced_index.hpp 
Log Message:
supressed GCC -W warnings about implicit initialization in copy ctors

Index: hashed_index.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_index/hashed_index.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- hashed_index.hpp    21 Dec 2006 11:54:18 -0000      1.7
+++ hashed_index.hpp    26 Feb 2007 09:13:50 -0000      1.8
@@ -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.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ordered_index.hpp   19 May 2006 06:51:20 -0000      1.14
+++ ordered_index.hpp   26 Feb 2007 09:13:50 -0000      1.15
@@ -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.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- random_access_index.hpp     2 Oct 2006 15:12:46 -0000       1.4
+++ random_access_index.hpp     26 Feb 2007 09:13:50 -0000      1.5
@@ -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.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- sequenced_index.hpp 2 Oct 2006 15:12:46 -0000       1.13
+++ sequenced_index.hpp 26 Feb 2007 09:13:50 -0000      1.14
@@ -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