Also recognize Inlines.h as a inlines header suffix in check-style (no bug, r=bustage)

--HG--
extra : rebase_source : 876ee986c8533afa0a3ba5b67c0a8efd588bd083
This commit is contained in:
Luke Wagner 2013-08-26 12:21:06 -05:00
parent 4ffb1a14bf
commit 8c248939fd

View File

@ -200,7 +200,7 @@ class FileKind(object):
if filename.endswith('.cpp'):
return FileKind.CPP
if filename.endswith(('inlines.h', '-inl.h')):
if filename.endswith(('inlines.h', '-inl.h', 'Inlines.h')):
return FileKind.INL_H
if filename.endswith('.h'):