astyle formatting
This commit is contained in:
parent
71a1d98693
commit
d5883ef0c4
|
@ -150,14 +150,14 @@ void CheckNullPointer::parseFunctionCall(const Token &tok, std::list<const Token
|
||||||
for (; argListTok; argListTok = argListTok->next()) { // Find next argument
|
for (; argListTok; argListTok = argListTok->next()) { // Find next argument
|
||||||
if (argListTok->str() == "(")
|
if (argListTok->str() == "(")
|
||||||
argListTok = argListTok->link();
|
argListTok = argListTok->link();
|
||||||
if(argListTok == 0)
|
if (argListTok == 0)
|
||||||
break;
|
break;
|
||||||
if (argListTok->str() == ",") {
|
if (argListTok->str() == ",") {
|
||||||
argListTok = argListTok->next();
|
argListTok = argListTok->next();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!argListTok)
|
if (!argListTok)
|
||||||
break;
|
break;
|
||||||
percent = false;
|
percent = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue