From d2cd2c5743a477a85e5ccdfff272585ebd507626 Mon Sep 17 00:00:00 2001 From: telans Date: Thu, 30 Jan 2020 07:36:25 +1300 Subject: [PATCH] revert part of "ignore compiler warnings"; fixed on master --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 697abab8..8b41defd 100644 --- a/meson.build +++ b/meson.build @@ -141,7 +141,7 @@ endforeach # For some reason, the test for -Wno-foo always succeeds with gcc, even if the # option is not supported. Hence, check for -Wfoo instead. -foreach a : ['non-virtual-dtor', 'missing-field-initializers', 'format-truncation', 'pointer-arith', 'unused-variable'] +foreach a : ['non-virtual-dtor', 'missing-field-initializers', 'format-truncation'] if cpp.has_argument('-W' + a) cpp_args += '-Wno-' + a endif