mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-06 10:41:38 +01:00
added concurrent_flat_map(unordered_flat_map&&)
This commit is contained in:
committed by
Christian Mazakas
parent
d4adcd9b71
commit
ac1a236de6
@@ -227,6 +227,13 @@ namespace boost {
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
concurrent_flat_map(
|
||||
unordered_flat_map<Key, T, Hash, Pred, Allocator>&& other)
|
||||
: table_(std::move(other.table_))
|
||||
{
|
||||
}
|
||||
|
||||
~concurrent_flat_map() = default;
|
||||
|
||||
concurrent_flat_map& operator=(concurrent_flat_map const& rhs)
|
||||
|
||||
Reference in New Issue
Block a user