Skip to content

Commit 42eb648

Browse files
committed
reformat code
1 parent ef63166 commit 42eb648

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/ASTMatchers/LowLevelHelpers.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ static void matchEachArgumentWithParamTypeImpl(
7777
QualType ParamType;
7878
if (FProto && FProto->getNumParams() > ParamIndex)
7979
ParamType = FProto->getParamType(ParamIndex);
80-
else if (const FunctionDecl *FD = getCallee(Node); FD && FD->getNumParams() > ParamIndex)
80+
else if (const FunctionDecl *FD = getCallee(Node);
81+
FD && FD->getNumParams() > ParamIndex)
8182
ParamType = FD->getParamDecl(ParamIndex)->getType();
8283
else
8384
continue;

0 commit comments

Comments
 (0)