Skip to content

Commit 13807f2

Browse files
committed
[ASTPrinter] Fix error for PackExpr
1 parent b20b18d commit 13807f2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/AST/ASTPrinter.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4217,6 +4217,12 @@ void PrintAST::visitTupleExpr(TupleExpr *expr) {
42174217
Printer << ")";
42184218
}
42194219

4220+
void PrintAST::visitPackExpr(PackExpr *expr) {
4221+
}
4222+
4223+
void PrintAST::visitReifyPackExpr(ReifyPackExpr *expr) {
4224+
}
4225+
42204226
void PrintAST::visitAssignExpr(AssignExpr *expr) {
42214227
visit(expr->getDest());
42224228
Printer << " = ";

0 commit comments

Comments
 (0)