$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59453 - trunk/boost/archive
From: ramey_at_[hidden]
Date: 2010-02-03 16:32:14
Author: ramey
Date: 2010-02-03 16:32:14 EST (Wed, 03 Feb 2010)
New Revision: 59453
URL: http://svn.boost.org/trac/boost/changeset/59453
Log:
address const T * serialization
Text files modified: 
   trunk/boost/archive/shared_ptr_helper.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/archive/shared_ptr_helper.hpp
==============================================================================
--- trunk/boost/archive/shared_ptr_helper.hpp	(original)
+++ trunk/boost/archive/shared_ptr_helper.hpp	2010-02-03 16:32:14 EST (Wed, 03 Feb 2010)
@@ -109,7 +109,7 @@
     // new system which is disjoint from this set.  This is implemented
     // by a change in load_construct_data below.  It makes this file suitable
     // only for loading pointers into a 1.33 or later boost system.
-    std::list<boost_132::shared_ptr<void> > * m_pointers_132;
+    std::list<boost_132::shared_ptr<const void> > * m_pointers_132;
 //  #endif
 
     // returns pointer to object and an indicator whether this is a
@@ -191,7 +191,7 @@
 
 //  #ifdef BOOST_SERIALIZATION_SHARED_PTR_132_HPP
     BOOST_ARCHIVE_DECL(void)
-    append(const boost_132::shared_ptr<void> & t);
+    append(const boost_132::shared_ptr<const void> & t);
 //  #endif
 public:
     BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY())