removed inline suggestion from hash_for

This commit is contained in:
joaquintides
2022-10-10 19:01:55 +02:00
parent 69aff6f776
commit 7caab66011

View File

@ -1315,7 +1315,7 @@ private:
}
template<typename Key>
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));
}