diff --git a/lldb/source/Expression/ASTResultSynthesizer.cpp b/lldb/source/Expression/ASTResultSynthesizer.cpp index 76c2577af533..f118943a23bc 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(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(result_initialization_stmt_result.take()); + *last_stmt_ptr = reinterpret_cast(result_initialization_stmt_result.get()); return true; }