Skip to content

Commit a9687c7

Browse files
author
thk123
committed
Remove check for using the using keyword
This was encouraged in #3270 but the linter was not updated.
1 parent 56c97f3 commit a9687c7

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)