mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-21 08:12:39 +02:00
fixed typo
[SVN r48256]
This commit is contained in:
@ -40,22 +40,20 @@ namespace boost { namespace fusion
|
||||
#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;
|
||||
|
Reference in New Issue
Block a user