| 679 | } |
| 680 | |
| 681 | static bool isQualifier(const Token* tok) |
| 682 | { |
| 683 | while (Token::Match(tok, "&|&&|*")) |
| 684 | tok = tok->next(); |
| 685 | return Token::Match(tok, "{|;"); |
| 686 | } |
| 687 | |
| 688 | /** |
| 689 | * @throws InternalError thrown if maximum AST depth is exceeded |
no test coverage detected