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 | 6eec8e883de118b431e3ead5b1e604a6ac68ff6b (patch) | |
tree | 6dc7cd488f6fb52a3a815933482c98972355f45b /lib/Analysis/GRExprEngine.cpp | |
parent | 3c3281742da8eef5027b9614c6f3802a05ec4244 (diff) |
Rename ExplicitCCastExpr to CStyleCastExpr
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 41579ac3a7..bbeebd6858 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -345,7 +345,7 @@ void GRExprEngine::Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst) { break; case Stmt::ImplicitCastExprClass: - case Stmt::ExplicitCCastExprClass: { + case Stmt::CStyleCastExprClass: { CastExpr* C = cast<CastExpr>(S); VisitCast(C, C->getSubExpr(), Pred, Dst); break; |