[Lldb-commits] [lldb] [lldb] Support specifying a language for breakpoint conditions (PR #147603)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 9 02:51:08 PDT 2025
================
@@ -317,7 +317,8 @@ const char *SBBreakpointName::GetCondition() {
std::lock_guard<std::recursive_mutex> guard(
m_impl_up->GetTarget()->GetAPIMutex());
- return ConstString(bp_name->GetOptions().GetConditionText()).GetCString();
+ return ConstString(bp_name->GetOptions().GetCondition().GetText())
----------------
Michael137 wrote:
Same `ConstString` question here
https://github.com/llvm/llvm-project/pull/147603
More information about the lldb-commits
mailing list