[Lldb-commits] [lldb] Add a breakpoint override resolver feature to lldb (PR #195392)
via lldb-commits
lldb-commits at lists.llvm.org
Tue May 5 15:46:06 PDT 2026
================
@@ -77,6 +77,10 @@ operator=(const lldb::SBStructuredData &rhs) {
return *this;
}
+void SBStructuredData::CopyImpl(lldb_private::StructuredDataImpl &new_impl) {
----------------
jimingham wrote:
We don't have any way of making or using an SBStructuredData that doesn't have a valid m_impl_up, and we use it all over in this file w/o checking that it is not null. It would look weird to have an assert in just this one place.
https://github.com/llvm/llvm-project/pull/195392
More information about the lldb-commits
mailing list