From d683b3ac3e494b2a188a7f556ca4b3141a8b757d Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 17 Mar 2023 19:21:46 +0100 Subject: [PATCH] disabled use of match_really_occupied in for_all_elements_while --- include/boost/unordered/detail/foa/core.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa/core.hpp b/include/boost/unordered/detail/foa/core.hpp index 5aaee39c..ba596288 100644 --- a/include/boost/unordered/detail/foa/core.hpp +++ b/include/boost/unordered/detail/foa/core.hpp @@ -1634,7 +1634,7 @@ public: static auto for_all_elements_while(const arrays_type& arrays_,F f) ->decltype(f(nullptr,0,nullptr),void()) { -#if 1 +#if 0 auto p=arrays_.elements; if(!p){return;} for(auto pg=arrays_.groups,last=pg+arrays_.groups_size_mask+1;