| 54 | } |
| 55 | |
| 56 | void List::pop_back() |
| 57 | { |
| 58 | ListItem *temp = back(); |
| 59 | if (temp) |
| 60 | { |
| 61 | temp->previous->next = nullptr; |
| 62 | temp->previous = temp->next = nullptr; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | ListItem *List::front() |
| 67 | { |
nothing calls this directly
no outgoing calls
no test coverage detected