(flagsPath)
| 37 | |
| 38 | |
| 39 | def additionalFlags(flagsPath): |
| 40 | if flagsPath and os.path.isfile(flagsPath): |
| 41 | |
| 42 | def valid(s): |
| 43 | return s and not s.startswith("#") |
| 44 | |
| 45 | with open(flagsPath) as f: |
| 46 | return list(filter(valid, (line.strip() for line in f))) |
| 47 | return [] |
| 48 | |
| 49 | |
| 50 | def findAllHeaderDirectory(rootDirectory, store): |
no outgoing calls
no test coverage detected