From 485393a6c1a9169f6a2f4a3b8d3f4146f1dbcca4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Sep 2023 17:13:02 -0400 Subject: Format meson.build files with muon The less time wasted with manual code formatting, the better. --- meson/suppressions/meson.build | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) (limited to 'meson/suppressions/meson.build') diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build index 3651bc0..6e8868e 100644 --- a/meson/suppressions/meson.build +++ b/meson/suppressions/meson.build @@ -69,10 +69,12 @@ if is_variable('cc') endif if warning_level in ['everything', '3'] - c_suppressions += clang_common_suppressions + [ - '-Wno-cast-function-type', - '-Wno-pedantic', - ] + c_suppressions += ( + clang_common_suppressions + [ + '-Wno-cast-function-type', + '-Wno-pedantic', + ] + ) endif elif cc.get_id() == 'gcc' @@ -85,15 +87,19 @@ if is_variable('cc') endif if warning_level in ['everything', '3'] - c_suppressions += gcc_common_suppressions + [ - '-Wno-pedantic', - ] + c_suppressions += ( + gcc_common_suppressions + [ + '-Wno-pedantic', + ] + ) endif if warning_level in ['everything', '3', '2'] - c_suppressions += gcc_common_suppressions + [ - '-Wno-cast-function-type', - ] + c_suppressions += ( + gcc_common_suppressions + [ + '-Wno-cast-function-type', + ] + ) endif elif cc.get_id() == 'msvc' -- cgit v1.2.1