diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-10-28 15:36:24 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-10-28 15:36:24 +0000 |
commit | f19b2319c9fefeff680291c400e61fa6a147cc78 (patch) | |
tree | de515635af14d9ed34fac1cd8e3199bc225b9afd /clang/lib/AST/StmtPrinter.cpp | |
parent | d984d3073135ccbd2107b937963380b5cf3320e4 (diff) | |
download | bcm5719-llvm-f19b2319c9fefeff680291c400e61fa6a147cc78.tar.gz bcm5719-llvm-f19b2319c9fefeff680291c400e61fa6a147cc78.zip |
Rename ExplicitCCastExpr to CStyleCastExpr
llvm-svn: 58331
Diffstat (limited to 'clang/lib/AST/StmtPrinter.cpp')
-rw-r--r-- | clang/lib/AST/StmtPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtPrinter.cpp b/clang/lib/AST/StmtPrinter.cpp index fb6fba399e2..51f4f518076 100644 --- a/clang/lib/AST/StmtPrinter.cpp +++ b/clang/lib/AST/StmtPrinter.cpp @@ -710,7 +710,7 @@ void StmtPrinter::VisitCastExpr(CastExpr *) { void StmtPrinter::VisitExplicitCastExpr(ExplicitCastExpr *) { assert(0 && "ExplicitCastExpr is an abstract class"); } -void StmtPrinter::VisitExplicitCCastExpr(ExplicitCCastExpr *Node) { +void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) { OS << "(" << Node->getType().getAsString() << ")"; PrintExpr(Node->getSubExpr()); } |