(filename)
| 100 | return new_flags |
| 101 | |
| 102 | def IsHeaderFile(filename): |
| 103 | extension = os.path.splitext(filename)[1] |
| 104 | return extension in [ '.h', '.hxx', '.hpp', '.hh' ] |
| 105 | |
| 106 | def GetCompilationInfoForFile(filename): |
| 107 | # The compilation_commands.json file generated by CMake does not have entries |
no outgoing calls
no test coverage detected