| 11073 | } |
| 11074 | |
| 11075 | static bool sameTokens(const Token *first, const Token *last, const Token *other) |
| 11076 | { |
| 11077 | while (other && first->str() == other->str()) { |
| 11078 | if (first == last) |
| 11079 | return true; |
| 11080 | first = first->next(); |
| 11081 | other = other->next(); |
| 11082 | } |
| 11083 | |
| 11084 | return false; |
| 11085 | } |
| 11086 | |
| 11087 | static bool alreadyHasNamespace(const Token *first, const Token *last, const Token *end) |
| 11088 | { |
no test coverage detected