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:
authorMarvin Scholz <epirat07@gmail.com>2018-10-02 17:26:50 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2018-10-02 17:28:41 +0300
commitfa3d225de929a87d2fde8f00dc7c07785c03ca83 (patch)
tree794dcf1d9ce4f3304b7c6daf283f88a4f7826ece /meson.build
parentcedefa50c379a46813be2bdae1ae9137963622fc (diff)
Build: Do not warn about maybe-uninitialized
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 90990db..6aaeaa4 100644
--- a/meson.build
+++ b/meson.build
@@ -145,6 +145,7 @@ endif
optional_arguments = [
'-Wundef',
'-Werror=vla',
+ '-Wno-maybe-uninitialized',
]
if (get_option('buildtype') != 'debug' and get_option('buildtype') != 'plain')