Add prototype copy assignment operator

This commit is contained in:
Christian Mazakas
2023-04-21 15:56:22 -07:00
parent 1e92d9f545
commit 26ab9ff584
4 changed files with 168 additions and 0 deletions

View File

@@ -252,6 +252,12 @@ namespace boost {
~concurrent_flat_map() = default;
concurrent_flat_map& operator=(concurrent_flat_map const& rhs)
{
table_ = rhs.table_;
return *this;
}
/// Capacity
///