astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2019-09-02 06:59:07 +02:00
parent cb509f1a8b
commit 7d63bdee6f
6 changed files with 36 additions and 36 deletions

View File

@ -1364,7 +1364,7 @@ void CheckUninitVar::valueFlowUninit()
while (Token::simpleMatch(nextTok->astParent(), "."))
nextTok = nextTok->astParent();
nextTok = nextAfterAstRightmostLeaf(nextTok);
if(nextTok == scope.bodyEnd)
if (nextTok == scope.bodyEnd)
break;
tok = nextTok ? nextTok : tok;
}

View File

@ -4443,7 +4443,7 @@ private:
}
void uninitvar_nonmember() {
valueFlowUninit( "struct Foo {\n"
valueFlowUninit("struct Foo {\n"
" int bar;\n"
"};\n"
"\n"