add comments

This commit is contained in:
Daniel Marjamäki 2018-09-01 16:45:14 +02:00
parent 3cad3c901f
commit 0a9d417266
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ bool isSameExpression(bool cpp, bool macro, const Token *tok1, const Token *tok2
}
// Follow variables if possible
// DM: followVariableExpression is disabled for now because it cause problems.
// See #8717 and #8722
// See #8709, #8713, #8717 and #8722
/*
if (tok1->str() != tok2->str() && (Token::Match(tok1, "%var%") || Token::Match(tok2, "%var%"))) {
const Token * varTok1 = followVariableExpression(tok1, cpp);