[Lldb-commits] [lldb] [LLDB] Fix debuginfo ELF files overwriting Unified Section List (PR #166635)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 5 13:35:34 PST 2025
================
@@ -683,6 +683,34 @@ uint64_t SectionList::GetDebugInfoSize() const {
return debug_info_size;
}
+std::shared_ptr<SectionList>
----------------
clayborg wrote:
Just return a `SectionList`. No need to water it down to a shared pointer to a section list. You can use move semenatics on the return value.
https://github.com/llvm/llvm-project/pull/166635
More information about the lldb-commits
mailing list