From d66105adea98bbe89d6ee7c62e230ab75931a969 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 28 Jun 2020 11:43:46 +0000 Subject: Upstream release v2.0.5 --- README.md | 2 +- include/nlohmann/json.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4171dd2..e6497f3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ include(FetchContent) FetchContent_Declare(json GIT_REPOSITORY https://github.com/ArthurSonzogni/nlohman_json - GIT_TAG v2.0.4) + GIT_TAG v2.0.5) FetchContent_GetProperties(json) if(NOT json_POPULATED) diff --git a/include/nlohmann/json.hpp b/include/nlohmann/json.hpp index fd548c2..8469a49 100644 --- a/include/nlohmann/json.hpp +++ b/include/nlohmann/json.hpp @@ -1,7 +1,7 @@ /* __ _____ _____ _____ __| | __| | | | JSON for Modern C++ -| | |__ | | | | | | version 2.0.4 +| | |__ | | | | | | version 2.0.5 |_____|_____|_____|_|___| https://github.com/nlohmann/json Licensed under the MIT License . @@ -8614,7 +8614,7 @@ basic_json_parser_63: std::string line; std::getline(*m_stream, line); // add line with newline symbol to the line buffer - m_line_buffer += "\n" + line; + m_line_buffer += line + "\n"; } // set pointers -- cgit v1.2.3