Take care of size_t -> int warnings under g++ 4.8

This commit is contained in:
Peter Dimov
2021-10-17 00:31:08 +03:00
parent 998d8da8c8
commit 3c3948ccdb

View File

@@ -308,7 +308,7 @@ namespace boost
return seed;
}
template<int Bits> struct hash_combine_impl
template<std::size_t Bits> struct hash_combine_impl
{
template <typename SizeT>
inline static SizeT fn(SizeT seed, SizeT value)