diff options
author | David Robillard <d@drobilla.net> | 2022-11-25 07:05:28 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-11-25 07:33:22 -0500 |
commit | 445a56f6d576f1d5bd3f61fd5e722722b563ee74 (patch) | |
tree | 6a49cef136f904a865c0c0dd7b35048ef8234288 /meson/suppressions | |
parent | ae5a48ad57b56d2fefe167b4eb1a5f3c4111c2e0 (diff) | |
download | serd-445a56f6d576f1d5bd3f61fd5e722722b563ee74.tar.gz serd-445a56f6d576f1d5bd3f61fd5e722722b563ee74.tar.bz2 serd-445a56f6d576f1d5bd3f61fd5e722722b563ee74.zip |
Trim redundant warning flags enabled by -Wextra and -Wpedantic
Diffstat (limited to 'meson/suppressions')
-rw-r--r-- | meson/suppressions/meson.build | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build index f722ebe0..098f7ab5 100644 --- a/meson/suppressions/meson.build +++ b/meson/suppressions/meson.build @@ -60,16 +60,25 @@ if is_variable('cc') '/wd4061', # enumerator in switch is not explicitly handled '/wd4365', # signed/unsigned mismatch '/wd4514', # unreferenced inline function has been removed - '/wd4706', # assignment within conditional expression '/wd4710', # function not inlined '/wd4711', # function selected for automatic inline expansion '/wd4800', # implicit conversion from int to bool '/wd4820', # padding added after construct - '/wd4996', # POSIX name for this item is deprecated '/wd5045', # will insert Spectre mitigation for memory load ] endif endif + if cc.get_id() == 'clang' + c_suppressions += [ + '-Wno-nullability-extension', + ] + elif cc.get_id() == 'msvc' + c_suppressions += [ + '/wd4706', # assignment within conditional expression + '/wd4996', # POSIX name for this item is deprecated + ] + endif + c_suppressions = cc.get_supported_arguments(c_suppressions) endif |