8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd4620d commit 207a664Copy full SHA for 207a664
Tools/build/check_warnings.py
@@ -265,16 +265,6 @@ def main(argv: list[str] | None = None) -> int:
265
compiler_output_file_contents,
266
)
267
268
- print("######### Warnings by file #########")
269
- files_with_warnings = get_warnings_by_file(warnings)
270
- for filename in files_with_warnings.keys():
271
- print(f"{filename} {len(files_with_warnings[filename])}")
272
-
273
- print("######### Expected warnings #########")
274
- for file in files_with_expected_warnings:
275
- print(f"{file.name} {file.count}")
276
- print("####################################")
277
278
status = get_unexpected_warnings(
279
files_with_expected_warnings, files_with_warnings
280
0 commit comments