diff options
Diffstat (limited to 'lldb/source/Symbol/LineTable.cpp')
-rw-r--r-- | lldb/source/Symbol/LineTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Symbol/LineTable.cpp b/lldb/source/Symbol/LineTable.cpp index ce9b8598070..98f7e127ca3 100644 --- a/lldb/source/Symbol/LineTable.cpp +++ b/lldb/source/Symbol/LineTable.cpp @@ -489,7 +489,7 @@ LineTable::GetContiguousFileAddressRanges (FileAddressRanges &file_ranges, bool LineTable * LineTable::LinkLineTable (const FileRangeMap &file_range_map) { - std::auto_ptr<LineTable> line_table_ap (new LineTable (m_comp_unit)); + STD_UNIQUE_PTR(LineTable) line_table_ap (new LineTable (m_comp_unit)); LineSequenceImpl sequence; const size_t count = m_entries.size(); LineEntry line_entry; |