contrib: filter out more unrelated warnings
contrib/ChangeLog: * filter-clang-warnings.py: Skip Makefile and libffi warnings.
This commit is contained in:
parent
3e030227ea
commit
0d1b5446bf
1 changed files with 2 additions and 0 deletions
|
@ -79,6 +79,8 @@ for line in lines:
|
|||
if i != -1:
|
||||
location = line[:i]
|
||||
message = line[i + len(token):]
|
||||
if '/libffi/' in location or location.startswith('Makefile'):
|
||||
continue
|
||||
if not skip_warning(location, message):
|
||||
total += 1
|
||||
messages.add(line)
|
||||
|
|
Loading…
Add table
Reference in a new issue