From b4ab5e5c88e1dc12cca2d12055ae9b0767903172 Mon Sep 17 00:00:00 2001 From: Quentin Glidic Date: Fri, 19 Apr 2019 10:09:01 +0200 Subject: [PATCH] meson: Lower default warning level It makes it easier for us to find real issues. Signed-off-by: Quentin Glidic --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6af599b9..2b314062 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,6 @@ project('rofi', 'c', license: [ 'MIT' ], default_options: [ 'c_std=c99', - 'warning_level=3', ], ) @@ -21,6 +20,7 @@ flags = [ '-Winline', '-Wunreachable-code', '-Werror=missing-prototypes', + '-Wno-inline', # A bit too noisy with Bison… ] foreach f : flags if c_compiler.has_argument(f)