diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 8c5c2fa2..5f731494 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1558,8 +1558,7 @@ private: auto p=arrays.elements+pos*N; prefetch_elements(p); do{ - //auto n=unchecked_countr_zero(mask); - auto n=(unsigned int)__builtin_ctz((unsigned int)mask); + auto n=unchecked_countr_zero(mask); if(BOOST_LIKELY(bool(pred()(x,key_from(p[n]))))){ return {pg,n,p+n}; }