Add GCOVR_EXCL_LINE

This was showing as uncovered in CI for some reason
This commit is contained in:
2026-07-14 13:38:15 -04:00
parent 862b6a4886
commit 5c9e9603de
+1 -1
View File
@@ -129,7 +129,7 @@ longestCommonPrefix(const uint8_t *ap, const uint8_t *bp, int cl) {
}
int i = 0;
int end;
int end; // GCOVR_EXCL_LINE
// kStride * kUnrollCount at a time
end = cl & ~(kStride * kUnrollFactor - 1);