From 96dd4ffa19fc5ff7f59ae90cca2963acd88626c8 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 30 Jul 2017 18:30:34 +0200 Subject: [PATCH] :hammer: simplified a call --- src/json.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 24c1611e..d5fad77b 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -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); } /*!