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>
|
#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;
|
||||||
|
Reference in New Issue
Block a user