Skip to content

Commit

Permalink
🏁 and another try
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Oct 3, 2017
1 parent a85bc35 commit e2045ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/unit-algorithms.cpp
Expand Up @@ -300,7 +300,6 @@ TEST_CASE("algorithms")
std::set_union(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
CHECK(j3 == json({1, 2, 3, 4, 5, 6, 7, 8}));
}
*/
SECTION("std::set_symmetric_difference")
{
Expand All @@ -311,6 +310,7 @@ TEST_CASE("algorithms")
std::set_symmetric_difference(j1.begin(), j1.end(), j2.begin(), j2.end(), std::back_inserter(j3));
CHECK(j3 == json({1, 3, 4, 5, 6, 7, 8}));
}
*/
}

SECTION("heap operations")
Expand Down

0 comments on commit e2045ea

Please sign in to comment.