HPL1: fix formatting

This commit is contained in:
grisenti
2022-12-23 14:04:13 +01:00
committed by Eugene Sandulenko
parent edffe61371
commit 452debbed8
+1 -1
View File
@@ -138,7 +138,7 @@ public:
return it;
}
std::pair<iterator, bool> insert(value_type const &val) {
std::pair<iterator, bool> insert(const value_type &val) {
iterator it = this->lower_bound(val.first);
if (it == this->end() || !(it->first == val.first)) {
size_t idx = it - this->begin();