mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
📝 fixed documentation #745
This commit is contained in:
@ -12818,6 +12818,7 @@ class basic_json
|
||||
future version of the library. Please use
|
||||
@ref operator<<(std::ostream&, const basic_json&)
|
||||
instead; that is, replace calls like `j >> o;` with `o << j;`.
|
||||
@since version 1.0.0; deprecated since version 3.0.0
|
||||
*/
|
||||
JSON_DEPRECATED
|
||||
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
|
||||
@ -13001,6 +13002,7 @@ class basic_json
|
||||
future version of the library. Please use
|
||||
@ref operator>>(std::istream&, basic_json&)
|
||||
instead; that is, replace calls like `j << i;` with `i >> j;`.
|
||||
@since version 1.0.0; deprecated since version 3.0.0
|
||||
*/
|
||||
JSON_DEPRECATED
|
||||
friend std::istream& operator<<(basic_json& j, std::istream& i)
|
||||
|
Reference in New Issue
Block a user