| 684 | } |
| 685 | |
| 686 | void ScriptList::KeepAboveValue(SQInteger value) |
| 687 | { |
| 688 | this->modifications++; |
| 689 | |
| 690 | for (ScriptListMap::iterator next_iter, iter = this->items.begin(); iter != this->items.end(); iter = next_iter) { |
| 691 | next_iter = std::next(iter); |
| 692 | if (iter->second <= value) this->RemoveItem(iter->first); |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | void ScriptList::KeepBelowValue(SQInteger value) |
| 697 | { |
nothing calls this directly
no test coverage detected