(flag: str)
| 1694 | |
| 1695 | # Determine whether a flag should be ignored. |
| 1696 | def should_ignore(flag: str) -> bool: |
| 1697 | return flag_match(flag, CFLAG_IGNORE, CFLAG_IGNORE_PREFIX) |
| 1698 | |
| 1699 | # Determine whether a flag should be passed through. |
| 1700 | def should_passthrough(flag: str) -> bool: |
no test coverage detected