From 3b1f635926cafaebac1cb706b943cf376ce27a5f Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 11 Oct 2022 11:50:17 +0200 Subject: [PATCH] reverted c4cc805063bfd0c78e8f0febaea23347ad10b1a5 --- include/boost/unordered/detail/foa.hpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index c5045685..c2b42370 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -604,14 +604,7 @@ struct xmx_mix template static inline std::size_t mix(const Hash& h,const T& x) { - //return xmx(h(x)); - boost::uint64_t z=(boost::uint64_t)(h(x)); - - z^=z>>23; - z*=0xff51afd7ed558ccdull; - z^=z>>23; - - return (std::size_t)z; + return xmx(h(x)); } };