From c44695eb3747a81ca9f6039d8087cec44c5b3fb2 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 28 Sep 2022 20:48:30 +0200 Subject: [PATCH] reverted --- include/boost/unordered/detail/foa.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index ffcfdc7b..822b49ac 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -408,9 +408,9 @@ struct pow2_quadratic_prober { pow2_quadratic_prober(std::size_t pos_):pos{pos_}{} - std::size_t get()const{return pos;} + inline std::size_t get()const{return pos;} - bool next(std::size_t mask) + inline bool next(std::size_t mask) { step+=1; pos=(pos+step)&mask;