Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2019-02-07 15:30:09 +0300
committerMartin Storsjö <martin@martin.st>2019-02-08 01:28:19 +0300
commit67f33e680e94e68a233455b6e767dd0789a5d9d8 (patch)
tree6a24562be57c5a11d696771fc4783b54c5554e20 /meson.build
parentf6a6b224a32fbab1e675cd193aaadd726925ae91 (diff)
meson: Try adding -Wno-missing-field-initializers when building
This fixes a number of warnings when building with clang. Not initializing all fields when using designated initializers is a very much expected and intentional thing.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 9fc5748..de08a58 100644
--- a/meson.build
+++ b/meson.build
@@ -169,6 +169,7 @@ optional_arguments = [
'-Wundef',
'-Werror=vla',
'-Wno-maybe-uninitialized',
+ '-Wno-missing-field-initializers',
'-Wno-unused-parameter',
'-Werror=missing-prototypes',
]