Commit ea3e922a authored by Aaron Burghardt's avatar Aaron Burghardt

Fix performance regression introduced with the parsing callback feature.

parent 2b825760
...@@ -3964,7 +3964,7 @@ class basic_json ...@@ -3964,7 +3964,7 @@ class basic_json
auto value = parse_internal(keep); auto value = parse_internal(keep);
if (keep and keep_tag and not value.is_discarded()) 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); while (last_token == lexer::token_type::value_separator);
...@@ -4015,7 +4015,7 @@ class basic_json ...@@ -4015,7 +4015,7 @@ class basic_json
auto value = parse_internal(keep); auto value = parse_internal(keep);
if (keep and not value.is_discarded()) 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); while (last_token == lexer::token_type::value_separator);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment