Skip to content

Commit 895d0e9

Browse files
committed
Fix formatting.
1 parent cf415a9 commit 895d0e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLambdaCapturesChecker.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,8 @@ class RawPtrRefLambdaCapturesChecker
377377
if (auto *ImplicitParam = dyn_cast<ImplicitParamDecl>(CapturedVar)) {
378378
auto kind = ImplicitParam->getParameterKind();
379379
if ((kind == ImplicitParamKind::ObjCSelf ||
380-
kind == ImplicitParamKind::CXXThis) && !shouldCheckThis)
380+
kind == ImplicitParamKind::CXXThis) &&
381+
!shouldCheckThis)
381382
continue;
382383
}
383384
QualType CapturedVarQualType = CapturedVar->getType();

0 commit comments

Comments
 (0)