From a0e87a26fd53f3d1ccb7e50efcbfa4bd8df1e90a Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 6 Nov 2023 15:57:00 +0100 Subject: [PATCH] Avoid using a clang specific -Wxxx, go for a more general one that exists both in gcc and clang --- pdns/test-dns_random_hh.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pdns/test-dns_random_hh.cc b/pdns/test-dns_random_hh.cc index c4fc32aa82..d41f0d4b02 100644 --- a/pdns/test-dns_random_hh.cc +++ b/pdns/test-dns_random_hh.cc @@ -8,8 +8,7 @@ #include #pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wunused-parameter" -#pragma GCC diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy" +#pragma GCC diagnostic ignored "-Wextra" #include #include #include -- 2.47.2