+ better string handling

pull/6/head
Niels 2015-01-02 12:47:32 +01:00
parent 85abe926cf
commit af4aca9edd
1 changed files with 1 additions and 1 deletions

View File

@ -1840,7 +1840,7 @@ void JSON::Parser::parse(JSON& result)
expect(':');
// value
parse(result[key]);
parse(result[std::move(key)]);
}
while (_current == ',' && next());
}