| 211 | } |
| 212 | |
| 213 | static bool pathViewEquals(StringSpan lhs, StringSpan rhs) |
| 214 | { |
| 215 | return lhs.sizeInBytes() == rhs.sizeInBytes() and |
| 216 | ::memcmp(lhs.bytesWithoutTerminator(), rhs.bytesWithoutTerminator(), lhs.sizeInBytes()) == 0; |
| 217 | } |
| 218 | |
| 219 | static bool repoHasMarkers(StringSpan path) |
| 220 | { |
no test coverage detected