mirror of
https://github.com/nlohmann/json.git
synced 2026-03-29 12:22:44 +00:00
+ better string handling
This commit is contained in:
@@ -1840,7 +1840,7 @@ void JSON::Parser::parse(JSON& result)
|
||||
expect(':');
|
||||
|
||||
// value
|
||||
parse(result[key]);
|
||||
parse(result[std::move(key)]);
|
||||
}
|
||||
while (_current == ',' && next());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user