Commit 1580eee4 authored by Niels's avatar Niels

applied #69 to header

parent 723155a3
......@@ -4658,7 +4658,7 @@ basic_json_parser_59:
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);
......@@ -4709,7 +4709,7 @@ basic_json_parser_59:
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);
......
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