$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: joel_at_[hidden]
Date: 2008-08-20 08:36:13
Author: djowel
Date: 2008-08-20 08:36:13 EDT (Wed, 20 Aug 2008)
New Revision: 48256
URL: http://svn.boost.org/trac/boost/changeset/48256
Log:
fixed typo
Text files modified:
trunk/boost/fusion/tuple/tuple.hpp | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
Modified: trunk/boost/fusion/tuple/tuple.hpp
==============================================================================
--- trunk/boost/fusion/tuple/tuple.hpp (original)
+++ trunk/boost/fusion/tuple/tuple.hpp 2008-08-20 08:36:13 EDT (Wed, 20 Aug 2008)
@@ -40,22 +40,20 @@
#include <boost/fusion/tuple/detail/tuple_expand.hpp>
template <typename T>
- tuple&
- operator=(T const& rhs)
+ tuple& operator=(T const& rhs)
{
base_type::operator=(rhs);
return *this;
}
- tuple&
- operator=(tuple const& rhs)
+ tuple& operator=(tuple const& rhs)
{
base_type::operator=(rhs);
return *this;
}
template <typename U1, typename U2>
- operator=(std::pair<U1, U2> const& rhs)
+ tuple& operator=(std::pair<U1, U2> const& rhs)
{
base_type::operator=(rhs);
return *this;