Fix shadowing warning in early gcc

This commit is contained in:
Christian Mazakas
2022-10-07 14:19:32 -07:00
parent e543818e3e
commit 9560d10771
2 changed files with 4 additions and 4 deletions

View File

@ -376,9 +376,9 @@ namespace boost {
void max_load_factor(float) {}
void rehash(size_type count) { table_.rehash(count); }
void rehash(size_type n) { table_.rehash(n); }
void reserve(size_type count) { table_.reserve(count); }
void reserve(size_type n) { table_.reserve(n); }
/// Observers
///

View File

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