Add rehash tests

This commit is contained in:
Christian Mazakas
2022-10-07 10:56:35 -07:00
parent 86d623a0f4
commit d3ef0b9a4f
4 changed files with 71 additions and 4 deletions

View File

@@ -371,6 +371,10 @@ namespace boost {
void max_load_factor(float) {}
void rehash(size_type count) { table_.rehash(count); }
void reserve(size_type count) { table_.reserve(count); }
/// Observers
///

View File

@@ -268,6 +268,10 @@ namespace boost {
void max_load_factor(float) {}
void rehash(size_type count) { table_.rehash(count); }
void reserve(size_type count) { table_.reserve(count); }
/// Observers
///