()
| 927 | return file_extension in GetHeaderExtensions() |
| 928 | |
| 929 | def GetHeaderExtensions(): |
| 930 | if _hpp_headers: |
| 931 | return _hpp_headers |
| 932 | if _valid_extensions: |
| 933 | return {h for h in _valid_extensions if 'h' in h} |
| 934 | return set(['h', 'hh', 'hpp', 'hxx', 'h++', 'cuh']) |
| 935 | |
| 936 | # The allowed extensions for file names |
| 937 | # This is set by --extensions flag |
no outgoing calls
no test coverage detected