fixed typo

[SVN r48256]
This commit is contained in:
Joel de Guzman
2008-08-20 12:36:13 +00:00
parent 7c74332487
commit 814c40a093

View File

@ -40,22 +40,20 @@ namespace boost { namespace fusion
#include <boost/fusion/tuple/detail/tuple_expand.hpp> #include <boost/fusion/tuple/detail/tuple_expand.hpp>
template <typename T> template <typename T>
tuple& tuple& operator=(T const& rhs)
operator=(T const& rhs)
{ {
base_type::operator=(rhs); base_type::operator=(rhs);
return *this; return *this;
} }
tuple& tuple& operator=(tuple const& rhs)
operator=(tuple const& rhs)
{ {
base_type::operator=(rhs); base_type::operator=(rhs);
return *this; return *this;
} }
template <typename U1, typename U2> template <typename U1, typename U2>
operator=(std::pair<U1, U2> const& rhs) tuple& operator=(std::pair<U1, U2> const& rhs)
{ {
base_type::operator=(rhs); base_type::operator=(rhs);
return *this; return *this;