diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-24 18:38:56 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-24 18:38:56 +0000 |
commit | 41b2dcd465f1e438502c420effc9d0c747f9db8f (patch) | |
tree | cb569a5b2a1929cf5623d88759f0b5f07f75d6d0 /lib/Frontend/RewriteObjC.cpp | |
parent | f645aaaf274c2f32c9ace457b9e69f041b565c17 (diff) |
Add BasePath arguments to all cast expr constructors.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102258 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/RewriteObjC.cpp')
-rw-r--r-- | lib/Frontend/RewriteObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/RewriteObjC.cpp b/lib/Frontend/RewriteObjC.cpp index e3d9955387..5f3b27201f 100644 --- a/lib/Frontend/RewriteObjC.cpp +++ b/lib/Frontend/RewriteObjC.cpp @@ -444,7 +444,7 @@ namespace { CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, CastExpr::CastKind Kind, Expr *E) { TypeSourceInfo *TInfo = Ctx->getTrivialTypeSourceInfo(Ty, SourceLocation()); - return new (Ctx) CStyleCastExpr(Ty, Kind, E, TInfo, + return new (Ctx) CStyleCastExpr(Ty, Kind, E, CXXBaseSpecifierArray(), TInfo, SourceLocation(), SourceLocation()); } } |