Get the two-layer fingerprint cache for C++ linting.
()
| 58 | |
| 59 | |
| 60 | def _get_cpp_lint_cache() -> TwoLayerFingerprintCache: |
| 61 | """Get the two-layer fingerprint cache for C++ linting.""" |
| 62 | cache_dir = Path(".cache") |
| 63 | return TwoLayerFingerprintCache(cache_dir, "cpp_lint") |
| 64 | |
| 65 | |
| 66 | def check_cpp_files_changed() -> bool: |
no test coverage detected