diff options
Diffstat (limited to 'clang/lib/AST/StmtPrinter.cpp')
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index b6f07070538..445e3e47552 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -953,6 +953,9 @@ void StmtPrinter::VisitCXXNewExpr(CXXNewExpr *E) { } if (E->isParenTypeId()) OS << "("; + // FIXME: This doesn't print the dynamic array size. We'd have to split up + // the allocated type to correctly emit that, but without an ASTContext, + // that's not possible. OS << E->getAllocatedType().getAsString(); if (E->isParenTypeId()) OS << ")"; |