Commit b47fdf88 by Niels

Merge branch 'develop' into feature/undo-number-roundtrip

parents ad7a419a 4ff27b20
...@@ -1285,7 +1285,7 @@ TEST_CASE("constructors") ...@@ -1285,7 +1285,7 @@ TEST_CASE("constructors")
SECTION("create a JSON value from an input stream") SECTION("create a JSON value from an input stream")
{ {
SECTION("sts::stringstream") SECTION("std::stringstream")
{ {
std::stringstream ss; std::stringstream ss;
ss << "[\"foo\",1,2,3,false,{\"one\":1}]"; ss << "[\"foo\",1,2,3,false,{\"one\":1}]";
...@@ -14067,7 +14067,7 @@ TEST_CASE("regression tests") ...@@ -14067,7 +14067,7 @@ TEST_CASE("regression tests")
CHECK(dest == expected); CHECK(dest == expected);
} }
SECTION("issue ##235 - ambiguous overload for 'push_back' and 'operator+='") SECTION("issue #235 - ambiguous overload for 'push_back' and 'operator+='")
{ {
json data = {{"key", "value"}}; json data = {{"key", "value"}};
data.push_back({"key2", "value2"}); data.push_back({"key2", "value2"});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment