From: Fred Morcos Date: Fri, 22 Mar 2024 09:28:36 +0000 (+0100) Subject: Meson: Silence sign compare warnings for bindlexer and bindparser X-Git-Tag: rec-5.1.0-alpha1~80^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23017e4ec2a946f9b7133a786caaae7694e21cce;p=thirdparty%2Fpdns.git Meson: Silence sign compare warnings for bindlexer and bindparser --- diff --git a/meson.build b/meson.build index a15f560d1c..c37257ae3b 100644 --- a/meson.build +++ b/meson.build @@ -514,7 +514,7 @@ libpdns_bindparser = declare_dependency( 'pdns-bindparser', libpdns_bindlexer_gen, libpdns_bindparser_gen, - cpp_args: '-Wno-redundant-decls', + cpp_args: ['-Wno-redundant-decls', '-Wno-sign-compare'], dependencies: deps, ) )