diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-06-29 18:35:45 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-06-29 18:35:45 +0300 |
commit | 01fafe55a1ab20870749dae01b437049ad4ce6e6 (patch) | |
tree | 76c3838dfc37a1ed2c60332e538a956d1126338c /contrib | |
parent | 04710b6d8c9e286485f4241671df72216b0f4698 (diff) |
Include Objective-C source files
The copyright_header.py script will process Objective-C source files
(*.mm) as other ones.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/devtools/copyright_header.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/copyright_header.py b/contrib/devtools/copyright_header.py index f2987f2260..29d1ed87ff 100755 --- a/contrib/devtools/copyright_header.py +++ b/contrib/devtools/copyright_header.py @@ -34,7 +34,7 @@ EXCLUDE_DIRS = [ "src/univalue/", ] -INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.py'] +INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.mm', '*.py'] INCLUDE_COMPILED = re.compile('|'.join([fnmatch.translate(m) for m in INCLUDE])) def applies_to_file(filename): |