Skip to content

Commit

Permalink
[libc++] Remove the line of stdout output from this generator. NFCI.
Browse files Browse the repository at this point in the history
This line was confusing some people: it's not supposed to indicate
any kind of problem with the script, and I can't see any way it could
even help with troubleshooting. So, just silence it.
  • Loading branch information
Arthur O'Dwyer committed Apr 30, 2021
1 parent 8be3af3 commit 680c5d5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libcxx/utils/generate_header_tests.py
Expand Up @@ -99,7 +99,6 @@ def should_keep_header(p, exclusions=None):
relpath = os.path.relpath(p, include_path)
relpath = posixpath.join(*os.path.split(relpath))
if relpath in exclusions:
print('Excluded file:', relpath)
return False

return os.path.splitext(p)[1] in allowed_extensions
Expand Down

0 comments on commit 680c5d5

Please sign in to comment.