From 029527c109b8be641f8378bce5a6efae7588ff15 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 5 Jan 2026 20:27:38 +0200 Subject: [PATCH] Disable -Wconversion for GCC 5 in test_hash_value.cpp --- test/test_hash_value.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_hash_value.cpp b/test/test_hash_value.cpp index bf66996..d8a91ae 100644 --- a/test/test_hash_value.cpp +++ b/test/test_hash_value.cpp @@ -2,6 +2,10 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt +#if defined(__GNUC__) && __GNUC__ == 5 +# pragma GCC diagnostic ignored "-Wconversion" +#endif + #include #include #include