Use build-in method erase

This commit is contained in:
Vasilii Rogin 2023-05-25 18:13:02 +03:00
parent 7ef17bfc3d
commit 287ed6d49c
1 changed files with 1 additions and 5 deletions

View File

@ -382,11 +382,7 @@ public:
if (it == keys.end()) {
throw(std::exception());
};
auto idx = it - keys.begin();
for (size_t i = idx; i < size() - 1; i++) {
std::swap(keys[i], keys[i + 1]);
}
keys.resize(keys.size() - 1);
keys.erase(it);
}
} else {
if (iter == map.end()) {