remove heterogeneous erase

This commit is contained in:
2019-05-27 20:58:45 +07:00
parent 911a790f7d
commit 11d4e4bc06
9 changed files with 0 additions and 54 deletions

View File

@@ -399,8 +399,6 @@ TEST_CASE("flat_set") {
REQUIRE(s0.upper_bound(std::string_view("hello")) == s0.begin() + 1);
REQUIRE(my_as_const(s0).upper_bound(std::string_view("hello")) == s0.begin() + 1);
REQUIRE(s0.erase(std::string_view("hello")) == 1);
}
SECTION("observers") {
struct my_less {