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

@@ -426,7 +426,6 @@ TEST_CASE("flat_multimap") {
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);
REQUIRE(s0.at(std::string_view("world")) == 84);
REQUIRE(my_as_const(s0).at(std::string_view("world")) == 84);
}