We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7328d commit f48e2bbCopy full SHA for f48e2bb
clang/lib/AST/StmtPrinter.cpp
@@ -610,7 +610,7 @@ void StmtPrinter::VisitObjCAtTryStmt(ObjCAtTryStmt *Node) {
610
}
611
612
613
- if (auto *FS = static_cast<ObjCAtFinallyStmt *>(Node->getFinallyStmt())) {
+ if (ObjCAtFinallyStmt *FS = Node->getFinallyStmt()) {
614
Indent() << "@finally";
615
if (auto *CS = dyn_cast<CompoundStmt>(FS->getFinallyBody())) {
616
PrintRawCompoundStmt(CS);
0 commit comments