[Lldb-commits] [lldb] [Support] [lldb] Fix thread jump #45326 (PR #135778)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Tue May 13 15:08:32 PDT 2025
================
@@ -1649,11 +1649,14 @@ class CommandObjectThreadJump : public CommandObjectParsed {
return Status::FromErrorStringWithFormat("invalid line number: '%s'.",
option_arg.str().c_str());
break;
- case 'b':
+ case 'b': {
+ option_arg.consume_front("+");
----------------
ashgti wrote:
Should this be documented that an optional `+` can be specified?
https://github.com/llvm/llvm-project/pull/135778
More information about the lldb-commits
mailing list