From 5266e22f0544721708ffa70dc2e1419b8d439ee7 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Fri, 13 Sep 2013 20:37:31 -0700 Subject: [PATCH] Remove debug code from cpplint.py --- src/cmake/Modules/cpplint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cmake/Modules/cpplint.py b/src/cmake/Modules/cpplint.py index b1fe8609a6..05c5daae8c 100755 --- a/src/cmake/Modules/cpplint.py +++ b/src/cmake/Modules/cpplint.py @@ -3095,7 +3095,6 @@ def CheckIncludeLine(filename, clean_lines, linenum, include_state, error): # Modified by Soonho Kong, 2013/09/12 include_new_style_exceptions = ["#include \"version.h\""] if _RE_PATTERN_INCLUDE_NEW_STYLE.search(line) and not line in include_new_style_exceptions: - print "|" + line + "|" error(filename, linenum, 'build/include', 4, 'Include the directory when naming .h files')