| 539 | } |
| 540 | |
| 541 | void simplecpp::TokenList::clear() |
| 542 | { |
| 543 | backToken = nullptr; |
| 544 | while (frontToken) { |
| 545 | Token * const next = frontToken->next; |
| 546 | delete frontToken; |
| 547 | frontToken = next; |
| 548 | } |
| 549 | sizeOfType.clear(); |
| 550 | } |
| 551 | |
| 552 | void simplecpp::TokenList::push_back(Token *tok) |
| 553 | { |
no outgoing calls
no test coverage detected