$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59454 - trunk/boost/archive/detail
From: ramey_at_[hidden]
Date: 2010-02-03 16:33:03
Author: ramey
Date: 2010-02-03 16:33:02 EST (Wed, 03 Feb 2010)
New Revision: 59454
URL: http://svn.boost.org/trac/boost/changeset/59454
Log:
Fix error on unregistered class exception
Text files modified: 
   trunk/boost/archive/detail/oserializer.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/archive/detail/oserializer.hpp
==============================================================================
--- trunk/boost/archive/detail/oserializer.hpp	(original)
+++ trunk/boost/archive/detail/oserializer.hpp	2010-02-03 16:33:02 EST (Wed, 03 Feb 2010)
@@ -395,7 +395,7 @@
                 boost::serialization::throw_exception(
                     archive_exception(
                         archive_exception::unregistered_class,
-                        true_type->get_debug_info()
+                        "derived class not registered or exported"
                     )
                 );
             }