| 573 | } |
| 574 | |
| 575 | void ScriptList::RemoveAboveValue(SQInteger value) |
| 576 | { |
| 577 | this->modifications++; |
| 578 | |
| 579 | for (ScriptListMap::iterator next_iter, iter = this->items.begin(); iter != this->items.end(); iter = next_iter) { |
| 580 | next_iter = std::next(iter); |
| 581 | if (iter->second > value) this->RemoveItem(iter->first); |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | void ScriptList::RemoveBelowValue(SQInteger value) |
| 586 | { |
nothing calls this directly
no test coverage detected