| 852 | } |
| 853 | |
| 854 | static std::string innerSmtString(const Token * tok) |
| 855 | { |
| 856 | if (!tok) |
| 857 | return "if"; |
| 858 | const Token * top = tok->astTop(); |
| 859 | if (top->str() == "(" && top->astOperand1()) |
| 860 | return top->astOperand1()->str(); |
| 861 | return top->str(); |
| 862 | } |
| 863 | |
| 864 | void CheckConditionImpl::oppositeInnerConditionError(const Token *tok1, const Token* tok2, ErrorPath errorPath) |
| 865 | { |
no test coverage detected