mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
Fix character skipping after a surrogate pair
In a string the first character following a surrogate pair is skipped by the lexer, but the rest of the string is parsed as usual.
This commit is contained in:
@ -6162,8 +6162,8 @@ class basic_json
|
||||
auto codepoint2 = std::strtoul(std::string(reinterpret_cast<typename string_t::const_pointer>
|
||||
(i + 7), 4).c_str(), nullptr, 16);
|
||||
result += to_unicode(codepoint, codepoint2);
|
||||
// skip the next 11 characters (xxxx\uyyyy)
|
||||
i += 11;
|
||||
// skip the next 10 characters (xxxx\uyyyy)
|
||||
i += 10;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user