🔨 simplified a call

This commit is contained in:
Niels Lohmann 2017-07-30 18:30:34 +02:00
parent 7737a29518
commit 96dd4ffa19
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -12737,8 +12737,7 @@ class basic_json
JSON_DEPRECATED
friend std::istream& operator<<(basic_json& j, std::istream& i)
{
parser(detail::input_adapter(i)).parse(false, j);
return i;
return operator>>(i, j);
}
/*!