added concurrent_flat_map(unordered_flat_map&&)

This commit is contained in:
joaquintides
2023-07-23 10:15:06 +02:00
committed by Christian Mazakas
parent d4adcd9b71
commit ac1a236de6
3 changed files with 48 additions and 13 deletions

View File

@@ -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)