diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-23 22:18:37 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-23 22:18:37 +0000 |
commit | 88465d3e996e627bbaa11099b039ddab66d5af2c (patch) | |
tree | af24459279b9dda86eea5d03ed91258e3c8b6dc1 /lib/Sema/SemaDecl.cpp | |
parent | f88b0d6c99e6473e78331271935986535dc4603c (diff) |
Add an InheritancePath parameter to the ImplicitCastExpr constructor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 7d2d866828..4800337383 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -6518,6 +6518,7 @@ void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc, ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, CastExpr::CK_IntegralCast, ECD->getInitExpr(), + /*InheritancePath=*/0, /*isLvalue=*/false)); if (getLangOptions().CPlusPlus) // C++ [dcl.enum]p4: Following the closing brace of an |