| 1778 | } |
| 1779 | |
| 1780 | static const Token* skipCVRefs(const Token* tok, const Token* endTok) |
| 1781 | { |
| 1782 | while (tok != endTok && Token::Match(tok, "const|volatile|auto|&|&&")) |
| 1783 | tok = tok->next(); |
| 1784 | return tok; |
| 1785 | } |
| 1786 | |
| 1787 | static bool isNotEqual(std::pair<const Token*, const Token*> x, std::pair<const Token*, const Token*> y) |
| 1788 | { |