[Lldb-commits] [PATCH] D65135: SymbolVendor: Remove the type list member
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 23 13:28:38 PDT 2019
JDevlieghere accepted this revision.
JDevlieghere added inline comments.
This revision is now accepted and ready to land.
================
Comment at: source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp:1286
- size_t old_count = m_obj_file->GetModule()->GetTypeList()->GetSize();
+ size_t old_count = GetTypeList().GetSize();
LazyRandomTypeCollection &types = m_index->tpi().typeCollection();
----------------
nit: maybe we can `const` this and the one below?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65135/new/
https://reviews.llvm.org/D65135
More information about the lldb-commits
mailing list