From 1ae8f000c1d117fd7aec27c632a82341b44b7dff Mon Sep 17 00:00:00 2001 From: Dor Askayo Date: Sat, 19 Feb 2022 17:29:19 +0200 Subject: [PATCH] meson: Enable -Wall by default Some redundant flags which implied by other flags were removed. Part-of: --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 504175549..b6522f93d 100644 --- a/meson.build +++ b/meson.build @@ -378,12 +378,10 @@ buildtype = get_option('buildtype') if buildtype != 'plain' all_warnings = [ '-fno-strict-aliasing', + '-Wall', '-Wpointer-arith', '-Wmissing-declarations', - '-Wimplicit-function-declaration', '-Wformat=2', - '-Wformat-nonliteral', - '-Wformat-security', '-Wstrict-prototypes', '-Wmissing-prototypes', '-Wnested-externs',