Merge pull request #21 from glebm/fix-remove-invalid

replace_invalid: Replace final incomplete sequence
This commit is contained in:
nemtrif 2019-04-02 18:23:18 -04:00 committed by GitHub
commit d8b09b3019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;