| 11085 | } |
| 11086 | |
| 11087 | static bool alreadyHasNamespace(const Token *first, const Token *last, const Token *end) |
| 11088 | { |
| 11089 | while (end && last->str() == end->str()) { |
| 11090 | if (first == last) |
| 11091 | return true; |
| 11092 | last = last->previous(); |
| 11093 | end = end->previous(); |
| 11094 | } |
| 11095 | |
| 11096 | return false; |
| 11097 | } |
| 11098 | |
| 11099 | static Token * deleteAlias(Token * tok) |
| 11100 | { |
no test coverage detected