diff options
author | Benjamin Otte <otte@redhat.com> | 2017-10-06 16:01:19 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-10-06 16:03:08 +0200 |
commit | c1e98693296e72f398b4acd0b1de0da31abc72f4 (patch) | |
tree | 0849fd4f067da21eab23b58d625ae68bac2c1ebd /meson.build | |
parent | defcf17d3df40ce64fc87a1f13e92001af60459a (diff) | |
download | gtk+-c1e98693296e72f398b4acd0b1de0da31abc72f4.tar.gz |
build: Don't turn off critical warnings
-Wint-conversion is important because it checks casts from ints to
pointers.
-Wdiscarded-qualifiers is important to catch cases where we don't
strings when we should.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 0e0b66970e..cc449733e1 100644 --- a/meson.build +++ b/meson.build @@ -249,8 +249,6 @@ elif cc.get_id() == 'gcc' or cc.get_id() == 'clang' '-Wlogical-op', '-Wno-uninitialized', '-Wno-shadow', - '-Wno-int-conversion', - '-Wno-discarded-qualifiers', '-Werror=redundant-decls', '-Werror=implicit', '-Werror=nonnull', |