mirror of
https://github.com/nlohmann/json.git
synced 2026-04-25 17:29:33 +00:00
fixed a bunch of warnings from the Makefile from the root of the repo
This commit is contained in:
@@ -457,7 +457,7 @@ TEST_CASE("RFC 7159 examples")
|
||||
}
|
||||
)";
|
||||
|
||||
CHECK_NOTHROW(auto tmp = json(json_contents));
|
||||
CHECK_NOTHROW(json(json_contents));
|
||||
}
|
||||
|
||||
{
|
||||
@@ -484,7 +484,7 @@ TEST_CASE("RFC 7159 examples")
|
||||
"Country": "US"
|
||||
}
|
||||
])";
|
||||
CHECK_NOTHROW(auto tmp = json(json_contents));
|
||||
CHECK_NOTHROW(json(json_contents));
|
||||
}
|
||||
|
||||
CHECK(json::parse("\"Hello world!\"") == json("Hello world!"));
|
||||
|
||||
Reference in New Issue
Block a user