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-09-23 16:52:30 +0300
committerMarvin Scholz <epirat07@gmail.com>2018-09-24 12:39:09 +0300
commit133fe1f9f21ac8eb8bdc5bcf2b966bec2bbfcfe8 (patch)
treecc131c936cf7959e6b3401cbf7f7b3c8ef3f9794 /meson.build
parent5c6c3accd0b70bb197c064b1cf68f88077179aa8 (diff)
Build: Do not add redundant -Wall flag
The -Wall flag is already set by default, as mesons `warning_level` defaults to 1, which includes the -Wall flag. Fix #12
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 4c91015..ce24d04 100644
--- a/meson.build
+++ b/meson.build
@@ -111,8 +111,7 @@ if (get_option('buildtype') != 'debug' and
language: 'c')
endif
-add_project_arguments('-Wall', '-Wundef',
- language: 'c')
+add_project_arguments('-Wundef', language: 'c')
foreach f : feature_defines
cdata.set(f.get(0), f.get(1))