[PATCH] D46888: [DWARF] Have HashedNameToDIE store a DataExtractor by value

Pavel Labath via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 17 04:39:58 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL332596: [DWARF] Have HashedNameToDIE store a DataExtractor by value (authored by labath, committed by ).
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

https://reviews.llvm.org/D46888

Files:
  lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h


Index: lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
===================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
@@ -156,8 +156,8 @@
                               lldb::offset_t *hash_data_offset_ptr,
                               Pair &pair) const override;
 
-    const lldb_private::DWARFDataExtractor &m_data;
-    const lldb_private::DWARFDataExtractor &m_string_table;
+    lldb_private::DWARFDataExtractor m_data;
+    lldb_private::DWARFDataExtractor m_string_table;
     std::string m_name;
   };
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46888.147290.patch
Type: text/x-patch
Size: 663 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180517/01af33a8/attachment.bin>


More information about the llvm-commits mailing list