mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Comment change: exclude more unreachable code from coverage
This commit is contained in:
parent
c0b7b55567
commit
7c11f77a03
1 changed files with 1 additions and 1 deletions
|
@ -1318,7 +1318,7 @@ XmlUtf8Encode(int c, char *buf)
|
|||
buf[3] = (char)((c & 0x3f) | 0x80);
|
||||
return 4;
|
||||
}
|
||||
return 0;
|
||||
return 0; /* LCOV_EXCL_LINE: this case too is eliminated before calling */
|
||||
}
|
||||
|
||||
int FASTCALL
|
||||
|
|
Loading…
Add table
Reference in a new issue