mirror of
https://github.com/nlohmann/json.git
synced 2025-07-25 13:41:56 +03:00
Merge branch 'feature/parser_performance' into develop
- improved parser performance by avoiding a copy of the result value
This commit is contained in:
@ -8485,7 +8485,7 @@ basic_json_parser_63:
|
||||
|
||||
// return parser result and replace it with null in case the
|
||||
// top-level value was discarded by the callback function
|
||||
return result.is_discarded() ? basic_json() : result;
|
||||
return result.is_discarded() ? basic_json() : std::move(result);
|
||||
}
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user