mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
Overload parse() to accept an rvalue reference
This commit is contained in:
@ -4471,6 +4471,11 @@ class basic_json
|
||||
return parser(i, cb).parse();
|
||||
}
|
||||
|
||||
static basic_json parse(std::istream&& i, parser_callback_t cb = nullptr)
|
||||
{
|
||||
return parser(i, cb).parse();
|
||||
}
|
||||
|
||||
/*!
|
||||
@brief deserialize from stream
|
||||
|
||||
|
Reference in New Issue
Block a user