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

@ -42,6 +42,12 @@ namespace boost { namespace fusion
return *this;
}
pair& operator=(pair const& rhs)
{
second = rhs.second;
return *this;
}
typedef First first_type;
typedef Second second_type;
Second second;