================ @@ -219,6 +219,16 @@ lldb::SBAddress SBBlock::GetRangeEndAddress(uint32_t idx) { return sb_addr; } +lldb::SBAddressRange SBBlock::GetRangeAtIndex(uint32_t idx) { + LLDB_INSTRUMENT_VA(this, idx); + + lldb::SBAddressRange sb_range; + if (m_opaque_ptr) { + m_opaque_ptr->GetRangeAtIndex(idx, sb_range.ref()); + } ---------------- clayborg wrote:
remove `{}` per coding guidelines https://github.com/llvm/llvm-project/pull/92014 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits