1
0
mirror of https://github.com/nlohmann/json synced 2024-11-10 06:20:06 +00:00

Fix performance regression introduced with the parsing callback feature.

This commit is contained in:
Aaron Burghardt 2015-05-04 09:08:55 -04:00
parent 2b825760b5
commit ea3e922a12

View File

@ -3964,7 +3964,7 @@ class basic_json
auto value = parse_internal(keep);
if (keep and keep_tag and not value.is_discarded())
{
result[key] = value;
result[key] = std::move(value);
}
}
while (last_token == lexer::token_type::value_separator);
@ -4015,7 +4015,7 @@ class basic_json
auto value = parse_internal(keep);
if (keep and not value.is_discarded())
{
result.push_back(value);
result.push_back(std::move(value));
}
}
while (last_token == lexer::token_type::value_separator);