Overload parse() to accept an rvalue reference
This commit is contained in:
parent
0a81353989
commit
8fdd20cdda
1 changed files with 5 additions and 0 deletions
|
@ -4471,6 +4471,11 @@ class basic_json
|
||||||
return parser(i, cb).parse();
|
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
|
@brief deserialize from stream
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue