| 2062 | } |
| 2063 | |
| 2064 | bool TokenList::validateToken(const Token* tok) const |
| 2065 | { |
| 2066 | if (!tok) |
| 2067 | return true; |
| 2068 | for (const Token *t = mTokensFrontBack->front; t; t = t->next()) { |
| 2069 | if (tok==t) |
| 2070 | return true; |
| 2071 | } |
| 2072 | return false; |
| 2073 | } |
| 2074 | |
| 2075 | void TokenList::simplifyPlatformTypes() |
| 2076 | { |
no test coverage detected