diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-07 22:43:56 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-07 22:43:56 +0000 |
commit | 016a4a90c8e75d59de731fa3aa98f0a55656e66c (patch) | |
tree | 9eb807f9281a8dfbb778ef0a86ce890de134ad93 /lib/AST/StmtPrinter.cpp | |
parent | 63ef464c3fad1e8b9f9360baa6c81f974b712e90 (diff) |
Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its
newly-narrowed scope. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtPrinter.cpp')
-rw-r--r-- | lib/AST/StmtPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/StmtPrinter.cpp b/lib/AST/StmtPrinter.cpp index 964106f7d7..7043c35516 100644 --- a/lib/AST/StmtPrinter.cpp +++ b/lib/AST/StmtPrinter.cpp @@ -1086,7 +1086,7 @@ void StmtPrinter::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) { OS << ")"; } -void StmtPrinter::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *Node) { +void StmtPrinter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) { OS << Node->getType().getAsString(Policy) << "()"; } |