| 3376 | } |
| 3377 | |
| 3378 | bool isCPPCast(const Token* tok) |
| 3379 | { |
| 3380 | return tok && Token::simpleMatch(tok->previous(), "> (") && tok->astOperand2() && tok->astOperand1() && isCPPCastKeyword(tok->astOperand1()); |
| 3381 | } |
| 3382 | |
| 3383 | bool isConstVarExpression(const Token *tok, const std::function<bool(const Token*)>& skipPredicate) |
| 3384 | { |
no test coverage detected