From 3c3948ccdbdab07a6219ba409e518524f9795f69 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 17 Oct 2021 00:31:08 +0300 Subject: [PATCH] Take care of size_t -> int warnings under g++ 4.8 --- include/boost/container_hash/hash.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container_hash/hash.hpp b/include/boost/container_hash/hash.hpp index 06fa8a3..5ce09d4 100644 --- a/include/boost/container_hash/hash.hpp +++ b/include/boost/container_hash/hash.hpp @@ -308,7 +308,7 @@ namespace boost return seed; } - template struct hash_combine_impl + template struct hash_combine_impl { template inline static SizeT fn(SizeT seed, SizeT value)