Fix ticket #418 (delete a,b; not tokenized correctly)
http://sourceforge.net/apps/trac/cppcheck/ticket/418
This commit is contained in:
parent
b7171c3cd2
commit
e8d1905e6d
|
@ -2976,11 +2976,21 @@ bool Tokenizer::simplifyCommaNearKeyWords()
|
||||||
|
|
||||||
// We must not accept just any keyword, e.g. accepting int
|
// We must not accept just any keyword, e.g. accepting int
|
||||||
// would cause function parameters to corrupt.
|
// would cause function parameters to corrupt.
|
||||||
if (!Token::Match(tok->next(), "delete"))
|
if (Token::Match(tok->next(), "delete"))
|
||||||
continue;
|
{
|
||||||
|
// Handle "delete a, delete b;"
|
||||||
tok->str(";");
|
tok->str(";");
|
||||||
ret = true;
|
ret = true;
|
||||||
|
}
|
||||||
|
else if (tok->previous() &&
|
||||||
|
Token::Match(tok->previous()->previous(), "delete") &&
|
||||||
|
tok->next()->varId() != 0)
|
||||||
|
{
|
||||||
|
// Handle "delete a, b;"
|
||||||
|
tok->str(";");
|
||||||
|
tok->insertToken("delete");
|
||||||
|
ret = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
@ -978,12 +978,23 @@ private:
|
||||||
|
|
||||||
void comma_keyword()
|
void comma_keyword()
|
||||||
{
|
{
|
||||||
const char code[] = "void foo()\n"
|
{
|
||||||
"{\n"
|
const char code[] = "void foo()\n"
|
||||||
" char *a, *b;\n"
|
"{\n"
|
||||||
" delete a, delete b;\n"
|
" char *a, *b;\n"
|
||||||
"}\n";
|
" delete a, delete b;\n"
|
||||||
ASSERT_EQUALS(" void foo ( ) { char * a ; char * b ; delete a ; delete b ; }", sizeof_(code));
|
"}\n";
|
||||||
|
ASSERT_EQUALS(" void foo ( ) { char * a ; char * b ; delete a ; delete b ; }", sizeof_(code));
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
const char code[] = "void foo()\n"
|
||||||
|
"{\n"
|
||||||
|
" char *a, *b;\n"
|
||||||
|
" delete a, b;\n"
|
||||||
|
"}\n";
|
||||||
|
ASSERT_EQUALS(" void foo ( ) { char * a ; char * b ; delete a ; delete b ; }", sizeof_(code));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue