Skip to content

IWYU: treat stdio.h the same way as cstdio #319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
I definitely should've seen that
Co-authored-by: Christian Clauss <cclauss@me.com>
  • Loading branch information
aaronliu0130 and cclauss authored Mar 4, 2025
commit 1642392968fc4e5f0578cf9d96337186036305ec
7 changes: 4 additions & 3 deletions cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -6228,9 +6228,10 @@ def CheckForIncludeWhatYouUse(filename, clean_lines, include_state, error,
# All the lines have been processed, report the errors found.
for header in sorted(required, key=required.__getitem__):
template = required[header][1]
if (header.strip('<>"') not in include_dict
and not (header.strip('<>"')[0] == 'c'
and (header.strip('<>"')[1:] + '.h') in include_dict)):
header_stripped = header.strip('<>"')
if (header_stripped not in include_dict
and not (header_stripped[0] == 'c'
and (header_stripped[1:] + '.h') in include_dict)):
error(filename, required[header][0],
'build/include_what_you_use', 4,
'Add #include ' + header + ' for ' + template)
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy