From 998d8da8c8d0d240e2da8059a85aee0b988177be Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 17 Oct 2021 00:17:01 +0300 Subject: [PATCH] Disable warning in test/check_float_funcs.cpp --- test/check_float_funcs.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/check_float_funcs.cpp b/test/check_float_funcs.cpp index 01d5168..74ca7cd 100644 --- a/test/check_float_funcs.cpp +++ b/test/check_float_funcs.cpp @@ -3,6 +3,11 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +#if defined(__GNUC__) +// in type_traits/is_complete.hpp:47 +#pragma GCC diagnostic ignored "-Wconversion" +#endif + #include #include #include