Merge overlapping patterns

This commit is contained in:
Dmitry-Me 2015-03-20 11:06:18 +03:00
parent 42b310e337
commit 4a75ac58cf
1 changed files with 1 additions and 3 deletions

View File

@ -1216,10 +1216,8 @@ void CheckUnusedVar::checkStructMemberUsage()
continue;
// Try to prevent false positives when struct members are not used directly.
if (Token::findmatch(tok, (structname + " *").c_str()))
if (Token::findmatch(tok, (structname + " %type%| *").c_str()))
structname.clear();
else if (Token::findmatch(tok, (structname + " %type% *").c_str()))
structname = "";
}
if (tok->str() == "}")