Update deps (#482)

This commit is contained in:
iranl
2024-10-09 20:06:50 +07:00
committed by GitHub
parent 3207cde395
commit 3f0ef34c9e
95 changed files with 2247 additions and 794 deletions
@@ -68,6 +68,12 @@ TEST_CASE("JsonArray::remove()") {
REQUIRE(array[1] == 2);
}
SECTION("remove end()") {
array.remove(array.end());
REQUIRE(3 == array.size());
}
SECTION("In a loop") {
for (JsonArray::iterator it = array.begin(); it != array.end(); ++it) {
if (*it == 2)