More map tests and more API features implemented + tweaks to affected components

[SVN r82713]
This commit is contained in:
Joel de Guzman
2013-02-04 06:21:45 +00:00
parent aba201eb4e
commit 228401d898
6 changed files with 68 additions and 6 deletions

View File

@ -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;
}

View File

@ -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)