| 603 | } |
| 604 | |
| 605 | void ScriptList::RemoveValue(SQInteger value) |
| 606 | { |
| 607 | this->modifications++; |
| 608 | |
| 609 | for (ScriptListMap::iterator next_iter, iter = this->items.begin(); iter != this->items.end(); iter = next_iter) { |
| 610 | next_iter = std::next(iter); |
| 611 | if (iter->second == value) this->RemoveItem(iter->first); |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | void ScriptList::RemoveTop(SQInteger count) |
| 616 | { |
nothing calls this directly
no test coverage detected