add hpp to valid cpplint extensions

This commit is contained in:
Jeff Donahue 2014-02-25 12:47:25 -08:00 коммит произвёл Evan Shelhamer
Родитель 4b8fe9bf58
Коммит 466ec38da1
1 изменённых файлов: 1 добавлений и 1 удалений

2
scripts/cpplint.py поставляемый
Просмотреть файл

@ -450,7 +450,7 @@ _line_length = 80
# The allowed extensions for file names
# This is set by --extensions flag.
_valid_extensions = set(['cc', 'h', 'cpp', 'cu', 'cuh'])
_valid_extensions = set(['cc', 'h', 'cpp', 'hpp', 'cu', 'cuh'])
def ParseNolintSuppressions(filename, raw_line, linenum, error):
"""Updates the global list of error-suppressions.