From: Timothy Arceri Date: Wed, 1 Jul 2020 03:37:14 +0000 (+1000) Subject: meson: turn on Wimplicit-fallthrough project wide X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e2209e869a5560cb12de040aa5f9db4a305111e8;p=mesa.git meson: turn on Wimplicit-fallthrough project wide This will help avoid coding errors and allows for less warnings from some static analysis tools. Reviewed-by: Marek Olšák Part-of: --- diff --git a/meson.build b/meson.build index 7d0373f3753..043047ddbea 100644 --- a/meson.build +++ b/meson.build @@ -991,6 +991,7 @@ else '-Werror=empty-body', '-Werror=incompatible-pointer-types', '-Werror=int-conversion', + '-Wimplicit-fallthrough', '-Wno-missing-field-initializers', '-Wno-format-truncation', '-fno-math-errno',