diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2019-03-19 17:09:43 +0200 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2019-09-19 19:22:18 +0300 |
commit | fbe15cf431deadd984023e9bdfa4dd2ac2f9cf1b (patch) | |
tree | a056e567527b2dd57d821b703e43cdb8c21c8761 /src | |
parent | 070fb84ecf7e40fb3003a58471fac0934758d41e (diff) |
sna: Use -Wno-maybe-uninitialized
The compiler seems incapable of deducing whether something
is used uninitialized or not.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/sna/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sna/meson.build b/src/sna/meson.build index 9e4b69f4..7408f63c 100644 --- a/src/sna/meson.build +++ b/src/sna/meson.build @@ -132,6 +132,7 @@ sna = static_library('sna', '-Wno-unused-but-set-variable', '-Wno-expansion-to-defined', '-Wno-shift-negative-value', + '-Wno-maybe-uninitialized', '-Wno-unused-parameter', '-Wno-unused-function', '-Wno-unused-variable', |