(flags: Optional[List[str]])
| 351 | |
| 352 | |
| 353 | def make_flags_str(flags: Optional[List[str]]) -> str: |
| 354 | if flags is None: |
| 355 | return "" |
| 356 | return " ".join(flags) |
| 357 | |
| 358 | |
| 359 | def get_pch_out_name(config: ProjectConfig, pch: PrecompiledHeader) -> str: |
no outgoing calls
no test coverage detected