summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2008-10-28 15:36:24 +0000
committerDouglas Gregor <dgregor@apple.com>2008-10-28 15:36:24 +0000
commitf19b2319c9fefeff680291c400e61fa6a147cc78 (patch)
treede515635af14d9ed34fac1cd8e3199bc225b9afd /clang/lib/Sema/SemaChecking.cpp
parentd984d3073135ccbd2107b937963380b5cf3320e4 (diff)
downloadbcm5719-llvm-f19b2319c9fefeff680291c400e61fa6a147cc78.tar.gz
bcm5719-llvm-f19b2319c9fefeff680291c400e61fa6a147cc78.zip
Rename ExplicitCCastExpr to CStyleCastExpr
llvm-svn: 58331
Diffstat (limited to 'clang/lib/Sema/SemaChecking.cpp')
-rw-r--r--clang/lib/Sema/SemaChecking.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 3365992ff6b..ac41bfc431d 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -826,7 +826,7 @@ static DeclRefExpr* EvalAddr(Expr *E) {
// For casts, we need to handle conversions from arrays to
// pointer values, and pointer-to-pointer conversions.
case Stmt::ImplicitCastExprClass:
- case Stmt::ExplicitCCastExprClass:
+ case Stmt::CStyleCastExprClass:
case Stmt::CXXFunctionalCastExprClass: {
Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
QualType T = SubExpr->getType();
OpenPOWER on IntegriCloud