forked from boostorg/fusion
More map tests and more API features implemented + tweaks to affected components
[SVN r82713]
This commit is contained in:
@ -204,7 +204,7 @@
|
||||
BOOST_PP_CAT(vector, N)&
|
||||
operator=(BOOST_PP_CAT(vector, N) const& vec)
|
||||
{
|
||||
base_type::operator=(*this);
|
||||
base_type::operator=(vec);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
@ -140,6 +140,13 @@ namespace boost { namespace fusion
|
||||
return *this;
|
||||
}
|
||||
|
||||
vector&
|
||||
operator=(vector const& rhs)
|
||||
{
|
||||
vec = rhs.vec;
|
||||
return *this;
|
||||
}
|
||||
|
||||
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||
vector&
|
||||
operator=(vector&& rhs)
|
||||
|
Reference in New Issue
Block a user