* Callback from the list if an item gets removed. */
| 84 | * Callback from the list if an item gets removed. |
| 85 | */ |
| 86 | void Remove(SQInteger item) |
| 87 | { |
| 88 | if (this->IsEnd()) return; |
| 89 | |
| 90 | /* If we remove the 'next' item, skip to the next */ |
| 91 | if (item == this->item_next) this->FindNext(); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Attach the sorter to a new list and update internal iterator so it remains valid |
no test coverage detected