Add allocator aware move constructors

This commit is contained in:
Christian Mazakas
2023-04-19 15:18:53 -07:00
parent 8bd07e17c3
commit 7812b26d3a
3 changed files with 154 additions and 4 deletions

View File

@@ -192,6 +192,11 @@ namespace boost {
{
}
concurrent_flat_map(concurrent_flat_map&& rhs, allocator_type a)
: table_(std::move(rhs.table_), a)
{
}
/// Capacity
///