added missing const qualifier

This commit is contained in:
joaquintides
2022-10-08 12:39:36 +02:00
parent 3913fce638
commit 32a7ed74e8

View File

@ -1306,7 +1306,7 @@ private:
}
template<typename Key>
inline std::size_t hash_for(const Key& x)
inline std::size_t hash_for(const Key& x)const
{
return mix_policy::mix(h()(x));
}