summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/UnwindAssembly.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Target/UnwindAssembly.cpp')
-rw-r--r--lldb/source/Target/UnwindAssembly.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/UnwindAssembly.cpp b/lldb/source/Target/UnwindAssembly.cpp
index af662b97c74..4901f6d91ae 100644
--- a/lldb/source/Target/UnwindAssembly.cpp
+++ b/lldb/source/Target/UnwindAssembly.cpp
@@ -24,7 +24,7 @@ UnwindAssembly::FindPlugin (const ArchSpec &arch)
(create_callback = PluginManager::GetUnwindAssemblyCreateCallbackAtIndex(idx)) != NULL;
++idx)
{
- std::auto_ptr<UnwindAssembly> assembly_profiler_ap (create_callback (arch));
+ STD_UNIQUE_PTR(UnwindAssembly) assembly_profiler_ap (create_callback (arch));
if (assembly_profiler_ap.get ())
return assembly_profiler_ap.release ();
}
OpenPOWER on IntegriCloud