Skip to content

Commit 870882c

Browse files
author
Thomas Kiley
authored
Merge pull request #3450 from thk123/dont-check-using-usage
Remove check for using the using keyword
2 parents 46c77e4 + a9687c7 commit 870882c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

scripts/cpplint.py

-3
Original file line numberDiff line numberDiff line change
@@ -6265,9 +6265,6 @@ def CheckNamespaceOrUsing(filename, clean_lines, linenum, error):
62656265
if '{' in current_line:
62666266
break
62676267
current_linenum+=1
6268-
if Match(r'^using\s', line):
6269-
error(filename, linenum, 'readability/namespace', 4,
6270-
'Do not use using')
62716268

62726269
def CheckForEndl(filename, clean_lines, linenum, error):
62736270
"""Check that the line does not contain std::endl."""

0 commit comments

Comments
 (0)