From a0c4fc945ae21ce8f30fe453a20e605cf639fee0 Mon Sep 17 00:00:00 2001 From: Francois Chabot Date: Wed, 19 Feb 2020 11:23:02 -0500 Subject: [PATCH] fixed bad friend class declaration --- include/nlohmann/json.hpp | 2 +- single_include/nlohmann/json.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nlohmann/json.hpp b/include/nlohmann/json.hpp index 94598d7b..5dfd2cb3 100644 --- a/include/nlohmann/json.hpp +++ b/include/nlohmann/json.hpp @@ -175,7 +175,7 @@ class basic_json friend class ::nlohmann::detail::iter_impl; template friend class ::nlohmann::detail::binary_writer; - template + template friend class ::nlohmann::detail::binary_reader; template friend class ::nlohmann::detail::json_sax_dom_parser; diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 26c4cd1b..952381f1 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp @@ -14778,7 +14778,7 @@ class basic_json friend class ::nlohmann::detail::iter_impl; template friend class ::nlohmann::detail::binary_writer; - template + template friend class ::nlohmann::detail::binary_reader; template friend class ::nlohmann::detail::json_sax_dom_parser;