forked from boostorg/fusion
More map tests and more API features implemented + tweaks to affected components
[SVN r82713]
This commit is contained in:
@ -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