mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-07 11:11:41 +01:00
Add allocator aware move constructors
This commit is contained in:
@@ -192,6 +192,11 @@ namespace boost {
|
||||
{
|
||||
}
|
||||
|
||||
concurrent_flat_map(concurrent_flat_map&& rhs, allocator_type a)
|
||||
: table_(std::move(rhs.table_), a)
|
||||
{
|
||||
}
|
||||
|
||||
/// Capacity
|
||||
///
|
||||
|
||||
|
||||
Reference in New Issue
Block a user