forked from boostorg/container_hash
Take care of size_t -> int warnings under g++ 4.8
This commit is contained in:
@@ -308,7 +308,7 @@ namespace boost
|
|||||||
return seed;
|
return seed;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<int Bits> struct hash_combine_impl
|
template<std::size_t Bits> struct hash_combine_impl
|
||||||
{
|
{
|
||||||
template <typename SizeT>
|
template <typename SizeT>
|
||||||
inline static SizeT fn(SizeT seed, SizeT value)
|
inline static SizeT fn(SizeT seed, SizeT value)
|
||||||
|
Reference in New Issue
Block a user