From a9687c784a18bbd13cae1bb11a32ac0ac6df86c9 Mon Sep 17 00:00:00 2001 From: thk123 Date: Wed, 21 Nov 2018 10:28:46 +0000 Subject: [PATCH] Remove check for using the using keyword This was encouraged in #3270 but the linter was not updated. --- scripts/cpplint.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/cpplint.py b/scripts/cpplint.py index 2a46dc8ce4b..2b0e42abcc5 100755 --- a/scripts/cpplint.py +++ b/scripts/cpplint.py @@ -6265,9 +6265,6 @@ def CheckNamespaceOrUsing(filename, clean_lines, linenum, error): if '{' in current_line: break current_linenum+=1 - if Match(r'^using\s', line): - error(filename, linenum, 'readability/namespace', 4, - 'Do not use using') def CheckForEndl(filename, clean_lines, linenum, error): """Check that the line does not contain std::endl."""