fix(cmake/Modules/cpplint.py): delete ending colon
Delete the erroneous ending colon.
This commit is contained in:
parent
51c771f334
commit
a2f30322a9
1 changed files with 1 additions and 1 deletions
2
src/cmake/Modules/cpplint.py
vendored
2
src/cmake/Modules/cpplint.py
vendored
|
@ -3800,7 +3800,7 @@ def CheckForIncludeWhatYouUse(filename, clean_lines, include_state, error,
|
||||||
|
|
||||||
# include_state is modified during iteration, so we iterate over a copy of
|
# include_state is modified during iteration, so we iterate over a copy of
|
||||||
# the keys.
|
# the keys.
|
||||||
header_keys = list(include_state):
|
header_keys = list(include_state)
|
||||||
for header in header_keys:
|
for header in header_keys:
|
||||||
(same_module, common_path) = FilesBelongToSameModule(abs_filename, header)
|
(same_module, common_path) = FilesBelongToSameModule(abs_filename, header)
|
||||||
fullpath = common_path + header
|
fullpath = common_path + header
|
||||||
|
|
Loading…
Reference in a new issue