From 6bda46794212fc5e92765d26da6dd0c9eac155bb Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 10 Oct 2022 19:52:14 +0200 Subject: [PATCH] temporarily disabled mix_policy --- include/boost/unordered/detail/foa.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index f379e80e..f0729ddd 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1317,7 +1317,8 @@ private: template inline std::size_t hash_for(const Key& x)const { - return mix_policy::mix(h()(x)); + //return mix_policy::mix(h()(x)); + return h()(x); } inline std::size_t position_for(std::size_t hash)const