From 7f2a43226e31b6ecf298fdfa4a4711c1373200ba 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 159b0af..1ff5d07 100644 --- a/include/boost/container_hash/hash.hpp +++ b/include/boost/container_hash/hash.hpp @@ -301,7 +301,7 @@ namespace boost namespace hash_detail { - template struct hash_combine_impl + template struct hash_combine_impl { template inline static SizeT fn(SizeT seed, SizeT value)