Removed implicit conversion in comparison operators (issue #998)

This commit is contained in:
Benoit Blanchon
2019-05-23 21:54:42 +02:00
parent 4eb8074358
commit 630107ae8a
14 changed files with 398 additions and 148 deletions

View File

@ -161,7 +161,7 @@ TEST_CASE("JsonObject::operator[]") {
obj[null] = 666;
REQUIRE(obj.size() == 1);
REQUIRE(obj[null] == 0);
REQUIRE(obj[null] == null);
}
SECTION("obj[key].to<JsonArray>()") {