lib: Mark dead code in unsignedCharToPrintable as dead to LCOV

This commit is contained in:
Sebastian Pipping 2024-12-09 23:02:51 +01:00
parent a0dc7d5efa
commit 03966546fa

View file

@ -8542,11 +8542,13 @@ unsignedCharToPrintable(unsigned char c) {
return "\\xFE";
case 255:
return "\\xFF";
// LCOV_EXCL_START
default:
assert(0); /* never gets here */
return "dead code";
}
assert(0); /* never gets here */
// LCOV_EXCL_STOP
}
#endif /* XML_GE == 1 */