[Lldb-commits] [lldb] Add a breakpoint override resolver feature to lldb (PR #195392)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon May 4 20:24:44 PDT 2026


================
@@ -77,6 +77,10 @@ operator=(const lldb::SBStructuredData &rhs) {
   return *this;
 }
 
+void SBStructuredData::CopyImpl(lldb_private::StructuredDataImpl &new_impl) {
----------------
JDevlieghere wrote:

```suggestion
void SBStructuredData::CopyImpl(lldb_private::StructuredDataImpl &new_impl) {
  assert(m_impl_up);
```

https://github.com/llvm/llvm-project/pull/195392


More information about the lldb-commits mailing list