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)); } };