mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
lib: Mark dead code in unsignedCharToPrintable as dead to LCOV
This commit is contained in:
parent
a0dc7d5efa
commit
03966546fa
1 changed files with 2 additions and 0 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue