From 7caab660113c2c2d1b62024dadd21942ec5ef267 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 10 Oct 2022 19:01:55 +0200 Subject: [PATCH] removed inline suggestion from hash_for --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 64699571..356f58ed 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1315,7 +1315,7 @@ private: } template - inline std::size_t hash_for(const Key& x)const + std::size_t hash_for(const Key& x)const { return mix_policy::mix(h()(x)); }