From f19b2319c9fefeff680291c400e61fa6a147cc78 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 28 Oct 2008 15:36:24 +0000 Subject: Rename ExplicitCCastExpr to CStyleCastExpr llvm-svn: 58331 --- clang/lib/Sema/SemaExpr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/lib/Sema/SemaExpr.cpp') diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 42f9ec727ef..a4fae9117ed 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -1327,7 +1327,7 @@ ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) return true; - return new ExplicitCCastExpr(castType, castExpr, castType, LParenLoc); + return new CStyleCastExpr(castType, castExpr, castType, LParenLoc); } /// Note that lex is not null here, even if this is the gnu "x ?: y" extension. -- cgit v1.2.3