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