Skip to content

Commit a0ad535

Browse files
committed
Fix a nit.
1 parent cacf0e3 commit a0ad535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/SemaDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13609,7 +13609,7 @@ void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
1360913609
// 2) if the var decl is decompsition decl with a non-deduced type, and
1361013610
// the initialization fails (e.g. `int [a] = {1, 2};`);
1361113611
// Case 1) was already handled elsewhere.
13612-
if (llvm::isa<DecompositionDecl>(VDecl)) // Case 2)
13612+
if (isa<DecompositionDecl>(VDecl)) // Case 2)
1361313613
VDecl->setInvalidDecl();
1361413614
return;
1361513615
}

0 commit comments

Comments
 (0)