From 615ce1e9b69e5040dc46ed2a6d40be7897a1d6fd Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sat, 29 Apr 2023 11:35:11 +0200 Subject: [PATCH] refactored unprotected_rehash_if_full out --- include/boost/unordered/detail/foa/concurrent_table.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/boost/unordered/detail/foa/concurrent_table.hpp b/include/boost/unordered/detail/foa/concurrent_table.hpp index fe314034..b72b4910 100644 --- a/include/boost/unordered/detail/foa/concurrent_table.hpp +++ b/include/boost/unordered/detail/foa/concurrent_table.hpp @@ -1158,11 +1158,6 @@ private: void rehash_if_full() { auto lck=exclusive_access(); - unprotected_rehash_if_full(); - } - - void unprotected_rehash_if_full() - { if(this->size_==this->ml)this->unchecked_rehash_for_growth(); }