| 671 | } |
| 672 | |
| 673 | void ScriptList::RemoveList(ScriptList *list) |
| 674 | { |
| 675 | this->modifications++; |
| 676 | |
| 677 | if (list == this) { |
| 678 | this->Clear(); |
| 679 | } else { |
| 680 | for (const auto &item : list->items) { |
| 681 | this->RemoveItem(item.first); |
| 682 | } |
| 683 | } |
| 684 | } |
| 685 | |
| 686 | void ScriptList::KeepAboveValue(SQInteger value) |
| 687 | { |
no test coverage detected