Skip to content
This repository was archived by the owner on Jul 13, 2019. It is now read-only.

Commit dcf8a87

Browse files
committed
Remove trailing ws
1 parent 568443c commit dcf8a87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpplint.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ def GetHeaderGuardCPPVariable(filename):
16841684
filename = re.sub(r'/\.flymake/([^/]*)$', r'/\1', filename)
16851685
# Replace 'c++' with 'cpp'.
16861686
filename = filename.replace('C++', 'cpp').replace('c++', 'cpp')
1687-
1687+
16881688
fileinfo = FileInfo(filename)
16891689
file_path_from_root = fileinfo.RepositoryName()
16901690
if _root:
@@ -4819,7 +4819,7 @@ def CheckLanguage(filename, clean_lines, linenum, file_extension,
48194819

48204820
# Make Windows paths like Unix.
48214821
fullname = os.path.abspath(filename).replace('\\', '/')
4822-
4822+
48234823
# Perform other checks now that we are sure that this is not an include line
48244824
CheckCasts(filename, clean_lines, linenum, error)
48254825
CheckGlobalStatic(filename, clean_lines, linenum, error)
@@ -6059,7 +6059,7 @@ def ProcessFileData(filename, file_extension, lines, error,
60596059
nesting_state.CheckCompletedBlocks(filename, error)
60606060

60616061
CheckForIncludeWhatYouUse(filename, clean_lines, include_state, error)
6062-
6062+
60636063
# Check that the .cc file has included its header if it exists.
60646064
if file_extension == 'cc':
60656065
CheckHeaderFileIncluded(filename, include_state, error)

0 commit comments

Comments
 (0)