|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r59701 - trunk/boost/archive/detail
From: ramey_at_[hidden]
Date: 2010-02-16 12:00:49
Author: ramey
Date: 2010-02-16 12:00:48 EST (Tue, 16 Feb 2010)
New Revision: 59701
URL: http://svn.boost.org/trac/boost/changeset/59701
Log:
change to avoid ">>" syntax error when passed a template instance
Text files modified:
trunk/boost/archive/detail/register_archive.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/archive/detail/register_archive.hpp
==============================================================================
--- trunk/boost/archive/detail/register_archive.hpp (original)
+++ trunk/boost/archive/detail/register_archive.hpp 2010-02-16 12:00:48 EST (Tue, 16 Feb 2010)
@@ -54,12 +54,12 @@
#define BOOST_SERIALIZATION_REGISTER_ARCHIVE(Archive) \
namespace boost { namespace archive { namespace detail { \
- get_counter<Archive>::next adjust_counter(get_counter<Archive>::type);\
+ get_counter<Archive >::next adjust_counter(get_counter<Archive >::type);\
template<class Serializable> \
void instantiate_ptr_serialization(Serializable* s, \
- get_counter<Archive>::type) { \
+ get_counter<Archive >::type) { \
ptr_serialization_support<Archive, Serializable> x; \
- instantiate_ptr_serialization(s, get_counter<Archive>::prior()); \
+ instantiate_ptr_serialization(s, get_counter<Archive >::prior()); \
}\
}}}
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