fix #2672 (False positive: function can be const, nested classes declared in one line)
This commit is contained in:
parent
ac7f1f874e
commit
3259239dfe
|
@ -5715,6 +5715,17 @@ void Tokenizer::simplifyVarDecl()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (Token::Match(tok2, "%type% :: %type% %var% ,|="))
|
||||||
|
{
|
||||||
|
if (tok2->tokAt(3)->str() != "operator")
|
||||||
|
{
|
||||||
|
tok2 = tok2->tokAt(4); // The ',' token
|
||||||
|
typelen = 3;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
tok2 = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
else if (Token::Match(tok2, "%type% %var% [ %num% ] ,|=|[") ||
|
else if (Token::Match(tok2, "%type% %var% [ %num% ] ,|=|[") ||
|
||||||
Token::Match(tok2, "%type% %var% [ %var% ] ,|=|["))
|
Token::Match(tok2, "%type% %var% [ %var% ] ,|=|["))
|
||||||
{
|
{
|
||||||
|
|
|
@ -4115,8 +4115,7 @@ private:
|
||||||
void vardecl_stl_2()
|
void vardecl_stl_2()
|
||||||
{
|
{
|
||||||
const char code1[] = "{ std::string x = \"abc\"; }";
|
const char code1[] = "{ std::string x = \"abc\"; }";
|
||||||
TODO_ASSERT_EQUALS("{ std :: string x ; x = \"abc\" ; }",
|
ASSERT_EQUALS("{ std :: string x ; x = \"abc\" ; }", tokenizeAndStringify(code1));
|
||||||
"{ std :: string x = \"abc\" ; }", tokenizeAndStringify(code1));
|
|
||||||
|
|
||||||
const char code2[] = "{ std::vector<int> x = y; }";
|
const char code2[] = "{ std::vector<int> x = y; }";
|
||||||
TODO_ASSERT_EQUALS("{ std :: vector < int > x ; x = y ; }",
|
TODO_ASSERT_EQUALS("{ std :: vector < int > x ; x = y ; }",
|
||||||
|
|
Loading…
Reference in New Issue