diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-16 05:13:48 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-16 05:13:48 +0000 |
commit | 9abf2aedae7538cfd85f3ff0898a6d14385c8e36 (patch) | |
tree | a173ddcd8f0aa57278b894e1c9917e79bb556e0f /lib/Parse/ParseDecl.cpp | |
parent | 2d46eb21eb2c904831b0e9f75ab3523384c70e66 (diff) |
AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and create the CXXExprWithTemporaries before setting the initializer on the VarDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseDecl.cpp')
-rw-r--r-- | lib/Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 029d9b5aae..9958bdf566 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -446,7 +446,7 @@ Parser::DeclPtrTy Parser::ParseDeclarationAfterDeclarator(Declarator &D, SkipUntil(tok::semi, true, true); return DeclPtrTy(); } - Actions.AddInitializerToDecl(ThisDecl, Actions.FullExpr(Init)); + Actions.AddInitializerToDecl(ThisDecl, move(Init)); } } else if (Tok.is(tok::l_paren)) { // Parse C++ direct initializer: '(' expression-list ')' |