| 1405 | } |
| 1406 | |
| 1407 | void simplecpp::TokenList::removeComments() |
| 1408 | { |
| 1409 | Token *tok = frontToken; |
| 1410 | while (tok) { |
| 1411 | Token * const tok1 = tok; |
| 1412 | tok = tok->next; |
| 1413 | if (tok1->comment) |
| 1414 | deleteToken(tok1); |
| 1415 | } |
| 1416 | } |
| 1417 | |
| 1418 | std::string simplecpp::TokenList::readUntil(Stream &stream, const Location &location, const char start, const char end, OutputList *outputList) |
| 1419 | { |
no test coverage detected