diff options
author | Zachary Turner <zturner@google.com> | 2019-03-12 20:50:46 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2019-03-12 20:50:46 +0000 |
commit | 0eaa6d5b018705874472f63722e65dac5ab6d31d (patch) | |
tree | 546d2d5d01b1518d21e8945a1cb59a92e007b0d1 /lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h | |
parent | d5364dfa6dc169755329b05272ce0a590bd23321 (diff) | |
download | bcm5719-llvm-0eaa6d5b018705874472f63722e65dac5ab6d31d.tar.gz bcm5719-llvm-0eaa6d5b018705874472f63722e65dac5ab6d31d.zip |
Remove DWARFDIECollection.
This is a very thin wrapper over a std::vector<DWARFDIE> and does
not seem to provide any real value over just using a container
directly.
Differential Revision: https://reviews.llvm.org/D59165
llvm-svn: 355974
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h b/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h index d5061f6d446..93acaa2251d 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h @@ -54,8 +54,7 @@ public: ScopedExtractDIEs ExtractDIEsScoped(); DWARFDIE LookupAddress(const dw_addr_t address); - size_t AppendDIEsWithTag(const dw_tag_t tag, - DWARFDIECollection &matching_dies, + size_t AppendDIEsWithTag(const dw_tag_t tag, std::vector<DWARFDIE> &dies, uint32_t depth = UINT32_MAX) const; bool Verify(lldb_private::Stream *s) const; virtual void Dump(lldb_private::Stream *s) const = 0; |