From 062948d8b8f82327e7034ab95cbd4a986c8f476e Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Fri, 17 Nov 2023 14:45:57 +0100 Subject: [PATCH] Silence -Wshadow warnings when including spongerng --- pdns/decafsigners.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pdns/decafsigners.cc b/pdns/decafsigners.cc index f474a45a10..326f622060 100644 --- a/pdns/decafsigners.cc +++ b/pdns/decafsigners.cc @@ -5,7 +5,10 @@ #endif #include #include +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wshadow" #include +#pragma GCC diagnostic pop #include "dnsseckeeper.hh" #include "dnssecinfra.hh" -- 2.47.3