mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-23 10:22:46 +00:00
metaincludecheck: extend extensions check
This commit is contained in:
parent
21ee6f072d
commit
7d351dee53
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ metaheaders = (
|
|||
|
||||
for root, dirs, files in os.walk(os.getcwd()):
|
||||
for sfile in files:
|
||||
if not sfile.endswith(('.hpp', '.h', '.cpp', '.c')):
|
||||
if not sfile.endswith(('.hpp', '.h', '.hh', '.cpp', '.c', 'cc')):
|
||||
continue
|
||||
sfull = '%s/%s' % (root, sfile)
|
||||
with open(sfull, 'rb') as f:
|
||||
|
|
Loading…
Add table
Reference in a new issue