================ @@ -62,8 +66,7 @@ class LLDB_API SBInstructionList { friend class SBTarget; void SetDisassembler(const lldb::DisassemblerSP &opaque_sp); - bool GetDescription(lldb_private::Stream &description); - + bool GetDescription(lldb_private::Stream &description, lldb::SBFrame *frame); ---------------- JDevlieghere wrote:
Let's give this a default argument so you don't need to pass `nullptr` everywhere. ```suggestion bool GetDescription(lldb_private::Stream &description, lldb::SBExecutionContext *exe_ctx = nullptr); ``` https://github.com/llvm/llvm-project/pull/136755 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits