Skip to content

Commit 4ad1c79

Browse files
committed
fixup! fix isa call
1 parent 7bc878e commit 4ad1c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/AST/Expr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2554,7 +2554,7 @@ bool IsDecompositionDeclRefExpr(const Expr *E) {
25542554
if (!Ref)
25552555
return false;
25562556

2557-
return llvm::isa_and_nonnull<DecompositionDecl *>(Ref->getDecl());
2557+
return llvm::isa_and_nonnull<DecompositionDecl>(Ref->getDecl());
25582558
}
25592559
} // namespace
25602560

0 commit comments

Comments
 (0)