| 1590 | } |
| 1591 | |
| 1592 | static bool astIsBoolLike(const Token* tok, const Settings& settings) |
| 1593 | { |
| 1594 | return astIsBool(tok) || isUsedAsBool(tok, settings); |
| 1595 | } |
| 1596 | |
| 1597 | bool isSameExpression(bool macro, const Token *tok1, const Token *tok2, const Settings& settings, bool pure, bool followVar, ErrorPath* errors) |
| 1598 | { |
no test coverage detected