This commit is contained in:
Alexander Mai 2015-03-21 12:26:30 +01:00
commit 149b0bbd24
1 changed files with 1 additions and 3 deletions

View File

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