mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-05 05:25:07 +00:00
Merge pull request #21 from glebm/fix-remove-invalid
replace_invalid: Replace final incomplete sequence
This commit is contained in:
commit
d8b09b3019
1 changed files with 3 additions and 1 deletions
|
@ -107,7 +107,9 @@ namespace utf8
|
|||
*out++ = *it;
|
||||
break;
|
||||
case internal::NOT_ENOUGH_ROOM:
|
||||
throw not_enough_room();
|
||||
out = utf8::append (replacement, out);
|
||||
start = end;
|
||||
break;
|
||||
case internal::INVALID_LEAD:
|
||||
out = utf8::append (replacement, out);
|
||||
++start;
|
||||
|
|
Loading…
Add table
Reference in a new issue