| 1152 | } |
| 1153 | |
| 1154 | static bool isIfConstexpr(const Token* tok) { |
| 1155 | const Token* const top = tok->astTop(); |
| 1156 | return Token::simpleMatch(top->astOperand1(), "if") && top->astOperand1()->isConstexpr(); |
| 1157 | } |
| 1158 | |
| 1159 | void CheckConditionImpl::checkIncorrectLogicOperator() |
| 1160 | { |
no test coverage detected