[Lldb-commits] [PATCH] D150363: [lldb][nfc] Simplify DebugRanges class
Felipe de Azevedo Piovezan via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu May 11 09:50:46 PDT 2023
fdeazeve added inline comments.
================
Comment at: lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h:32
- typedef std::map<dw_offset_t, DWARFRangeList> range_map;
- typedef range_map::iterator range_map_iterator;
- typedef range_map::const_iterator range_map_const_iterator;
- range_map m_range_map;
+ std::map<dw_offset_t, DWARFRangeList> m_range_map;
};
----------------
rastogishubham wrote:
> Any reason why the name was changed to `m_range_map`?
It was also `m_range_map` before. Maybe you're confusing it with name of the typedef that got deleted? The diff highlighting here is misleading
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150363/new/
https://reviews.llvm.org/D150363
More information about the lldb-commits
mailing list