[libc++] Remove the line of stdout output from this generator. NFCI.

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.
This commit is contained in:
Arthur O'Dwyer 2021-04-30 18:05:31 -04:00
parent 8be3af36f9
commit 680c5d5de2

View File

@ -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