[Lldb-commits] [lldb] [lldb-dap] Add missing supportsSingleThreadExecutionRequests in capabilities (PR #200314)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 1 12:55:06 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions h,cpp -- lldb/include/lldb/API/SBThread.h lldb/source/API/SBThread.cpp lldb/tools/lldb-dap/DAP.cpp lldb/tools/lldb-dap/Handler/StepOutRequestHandler.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp
index 9e3e553a4..ac0428681 100644
--- a/lldb/source/API/SBThread.cpp
+++ b/lldb/source/API/SBThread.cpp
@@ -650,9 +650,8 @@ void SBThread::StepOut(lldb::RunMode stop_other_threads, SBError &error) {
const LazyBool avoid_no_debug = eLazyBoolCalculate;
Status new_plan_status;
ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
- abort_other_plans, nullptr, false,
- stop_other_threads == eOnlyThisThread, eVoteYes, eVoteNoOpinion, 0,
- new_plan_status, avoid_no_debug));
+ abort_other_plans, nullptr, false, stop_other_threads == eOnlyThisThread,
+ eVoteYes, eVoteNoOpinion, 0, new_plan_status, avoid_no_debug));
if (new_plan_status.Success())
error = ResumeNewPlan(std::move(*exe_ctx), new_plan_sp.get());
``````````
</details>
https://github.com/llvm/llvm-project/pull/200314
More information about the lldb-commits
mailing list