From 5c9e9603de52c98a04c5476d2913982e6290f1d7 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 14 Jul 2026 13:38:15 -0400 Subject: [PATCH] Add GCOVR_EXCL_LINE This was showing as uncovered in CI for some reason --- LongestCommonPrefix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LongestCommonPrefix.h b/LongestCommonPrefix.h index 5490f97..f5c8b9d 100644 --- a/LongestCommonPrefix.h +++ b/LongestCommonPrefix.h @@ -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); @@ -182,4 +182,4 @@ longestCommonPrefix(const uint8_t *ap, const uint8_t *bp, int cl) { } return i; -} \ No newline at end of file +}