|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r65333 - trunk/boost/archive
From: ramey_at_[hidden]
Date: 2010-09-07 12:19:51
Author: ramey
Date: 2010-09-07 12:19:45 EDT (Tue, 07 Sep 2010)
New Revision: 65333
URL: http://svn.boost.org/trac/boost/changeset/65333
Log:
use full namespace qualification to try to fix test failure with xml archives
on darwin 4.4 with intel 1.1 compiler
Text files modified:
trunk/boost/archive/xml_archive_exception.hpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Modified: trunk/boost/archive/xml_archive_exception.hpp
==============================================================================
--- trunk/boost/archive/xml_archive_exception.hpp (original)
+++ trunk/boost/archive/xml_archive_exception.hpp 2010-09-07 12:19:45 EDT (Tue, 07 Sep 2010)
@@ -19,9 +19,10 @@
#include <exception>
#include <cassert>
-#include <boost/archive/archive_exception.hpp>
+#include <boost/config.hpp>
#include <boost/preprocessor/empty.hpp>
#include <boost/archive/detail/decl.hpp>
+#include <boost/archive/archive_exception.hpp>
#include <boost/archive/detail/abi_prefix.hpp> // must be the last header
@@ -32,7 +33,7 @@
// exceptions thrown by xml archives
//
class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) xml_archive_exception :
- public virtual archive_exception
+ public virtual boost::archive::archive_exception
{
public:
typedef enum {
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk