mirror of
https://github.com/nlohmann/json.git
synced 2026-02-24 20:36:27 +00:00
🎨 replace alternative operators (and, not, or)
This commit is contained in:
@@ -114,7 +114,7 @@ TEST_CASE("modifiers")
|
||||
json k = j;
|
||||
|
||||
j.clear();
|
||||
CHECK(not j.empty());
|
||||
CHECK(!j.empty());
|
||||
CHECK(j == json(json::value_t::binary));
|
||||
CHECK(j == json(k.type()));
|
||||
}
|
||||
@@ -125,7 +125,7 @@ TEST_CASE("modifiers")
|
||||
json k = j;
|
||||
|
||||
j.clear();
|
||||
CHECK(not j.empty());
|
||||
CHECK(!j.empty());
|
||||
CHECK(j == json(json::value_t::binary));
|
||||
CHECK(j == json(k.type()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user