diff options
Diffstat (limited to 'lldb/source/Expression/ASTResultSynthesizer.cpp')
-rw-r--r-- | lldb/source/Expression/ASTResultSynthesizer.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lldb/source/Expression/ASTResultSynthesizer.cpp b/lldb/source/Expression/ASTResultSynthesizer.cpp index 76c2577af53..f118943a23b 100644 --- a/lldb/source/Expression/ASTResultSynthesizer.cpp +++ b/lldb/source/Expression/ASTResultSynthesizer.cpp @@ -59,9 +59,6 @@ ASTResultSynthesizer::Initialize(ASTContext &Context) void ASTResultSynthesizer::TransformTopLevelDecl(Decl* D) -{ - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS)); - if (NamedDecl *named_decl = dyn_cast<NamedDecl>(D)) { if (log && log->GetVerbose()) @@ -364,7 +361,7 @@ ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body, ExprResult address_of_expr = m_sema->CreateBuiltinUnaryOp(SourceLocation(), UO_AddrOf, last_expr); - m_sema->AddInitializerToDecl(result_decl, address_of_expr.take(), true, false); + m_sema->AddInitializerToDecl(result_decl, address_of_expr.get(), true, false); } else { @@ -413,7 +410,7 @@ ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body, // replace the old statement with the new one // - *last_stmt_ptr = reinterpret_cast<Stmt*>(result_initialization_stmt_result.take()); + *last_stmt_ptr = reinterpret_cast<Stmt*>(result_initialization_stmt_result.get()); return true; } |