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 668f28660d
commit 7f2a43226e

View File

@@ -301,7 +301,7 @@ namespace boost
namespace hash_detail
{
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)