contrib: filter out -Wc++20-extensions

contrib/ChangeLog:

	* filter-clang-warnings.py: Filter -Wc++20-extensions as it does
	not respect proper attribute detection.
This commit is contained in:
Martin Liska 2021-11-23 08:36:54 +01:00
parent cab8f69857
commit 1ddf11d364

View file

@ -38,7 +38,7 @@ def skip_warning(filename, message):
'when in C++ mode, this behavior is deprecated',
'-Wignored-attributes', '-Wgnu-zero-variadic-macro-arguments',
'-Wformat-security', '-Wundefined-internal',
'-Wunknown-warning-option'],
'-Wunknown-warning-option', '-Wc++20-extensions'],
'insn-modes.c': ['-Wshift-count-overflow'],
'insn-emit.c': ['-Wtautological-compare'],
'insn-attrtab.c': ['-Wparentheses-equality'],