2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Disable -Wconversion for GCC 5 in test_hash_value.cpp

This commit is contained in:
Peter Dimov
2026-01-05 20:27:38 +02:00
parent bb5f471431
commit 029527c109

View File

@@ -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 <boost/uuid/uuid.hpp>
#include <boost/core/lightweight_test.hpp>
#include <unordered_set>