mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
HPL1: fix formatting
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user