summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2019-03-12 20:50:46 +0000
committerZachary Turner <zturner@google.com>2019-03-12 20:50:46 +0000
commit0eaa6d5b018705874472f63722e65dac5ab6d31d (patch)
tree546d2d5d01b1518d21e8945a1cb59a92e007b0d1 /lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
parentd5364dfa6dc169755329b05272ce0a590bd23321 (diff)
downloadbcm5719-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.h3
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;
OpenPOWER on IntegriCloud