[Lldb-commits] [lldb] [LLDB] Expose enumerator for separate-debug-info in SBModule (PR #144119)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 17 10:23:08 PDT 2025
================
@@ -31,6 +31,11 @@ SBFileSpecList::SBFileSpecList(const SBFileSpecList &rhs) {
m_opaque_up = clone(rhs.m_opaque_up);
}
+SBFileSpecList::SBFileSpecList(FileSpecList &&list)
+ : m_opaque_up(new FileSpecList(std::move(list))) {
+ LLDB_INSTRUMENT_VA(this);
+}
+
----------------
clayborg wrote:
This might not be needed if we use SBModuleSpecList
https://github.com/llvm/llvm-project/pull/144119
More information about the lldb-commits
mailing list