commit cb905effde03b19b3e32aaf6ea1fee1ed82c9f33
parent 8ffa3cf43906fa95c127c01b751590e77c7bf695
Author: Simon Ser <contact@emersion.fr>
Date: Sun, 17 Nov 2019 17:16:13 +0100
Add -Wno-missing-braces
-Wmissing-braces makes it annoying to zero-initialize structs with = {0}
when the first field is a struct. See for instance [1].
[1]: https://builds.sr.ht/~sircmpwn/job/110425
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/meson.build b/meson.build
@@ -17,6 +17,7 @@ add_project_arguments(
'-Wno-unused-parameter',
'-Wno-unused-result',
+ '-Wno-missing-braces',
'-Wundef',
'-Wvla',
],