mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-06 10:41:38 +01:00
Implement initializer_list assignment
This commit is contained in:
@@ -267,6 +267,12 @@ namespace boost {
|
||||
return *this;
|
||||
}
|
||||
|
||||
concurrent_flat_map& operator=(std::initializer_list<value_type> ilist)
|
||||
{
|
||||
table_ = ilist;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// Capacity
|
||||
///
|
||||
|
||||
|
||||
Reference in New Issue
Block a user