Add allocator-aware copy constructor

This commit is contained in:
Christian Mazakas
2023-04-19 09:35:38 -07:00
parent fb403bc233
commit 37edc392a5
2 changed files with 30 additions and 0 deletions

View File

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