include-what-you-use: Recognize c-style headers by norab0130 · Pull Request #306 · cpplint/cpplint · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.rst
12 changes: 7 additions & 5 deletions cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -6226,12 +6226,14 @@ def CheckForIncludeWhatYouUse(filename, clean_lines, include_state, error,
for item in sublist])

# All the lines have been processed, report the errors found.
for required_header_unstripped in sorted(required, key=required.__getitem__):
template = required[required_header_unstripped][1]
if required_header_unstripped.strip('<>"') not in include_dict:
error(filename, required[required_header_unstripped][0],
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)):
error(filename, required[header][0],
'build/include_what_you_use', 4,
'Add #include ' + required_header_unstripped + ' for ' + template)
'Add #include ' + header + ' for ' + template)


_RE_PATTERN_EXPLICIT_MAKEPAIR = re.compile(r'\bmake_pair\s*<')
Expand Down
3 changes: 3 additions & 0 deletions cpplint_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,9 @@ def testIncludeWhatYouUse(self):
self.TestIncludeWhatYouUse(
'printf("hello world");',
'Add #include <cstdio> for printf [build/include_what_you_use] [4]')
self.TestIncludeWhatYouUse(
"""#include <stdio.h>
printf("hello world");""", '') # Avoid false positives w/ c-style include
self.TestIncludeWhatYouUse(
'void a(const string &foobar);',
'Add #include <string> for string [build/include_what_you_use] [4]')
Expand Down
3 changes: 1 addition & 2 deletions samples/vlc-sample/simple.def