| 112 | } |
| 113 | |
| 114 | void RemoveItem() |
| 115 | { |
| 116 | if (count_items == 0) |
| 117 | return; |
| 118 | |
| 119 | size_t index = count_items == 0 ? 0 : ((size_t)rand() % count_items); |
| 120 | |
| 121 | mirror_list->removeItemAt(index); |
| 122 | original_list->removeItemAt(index); |
| 123 | |
| 124 | count_items--; |
| 125 | |
| 126 | checkList(); |
| 127 | } |
| 128 | |
| 129 | void RemoveItem(size_t _count) |
| 130 | { |
nothing calls this directly
no test coverage detected