[Lldb-commits] [lldb] [lldb] Delete StepScope enum whose values are ignored. (PR #101981)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 5 09:28:45 PDT 2024
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 9fea73110ecc0a13d18e5c52f8e7fa62a9de9ee9 8abb0771e646dfc46d832f03485b288a4be08168 --extensions cpp -- lldb/source/Commands/CommandObjectThread.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index fcf46843ba..605f872a9f 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -378,8 +378,7 @@ public:
eCommandTryTargetAPILock |
eCommandProcessMustBeLaunched |
eCommandProcessMustBePaused),
- m_step_type(step_type),
- m_class_options("scripted step") {
+ m_step_type(step_type), m_class_options("scripted step") {
AddSimpleArgumentList(eArgTypeThreadIndex, eArgRepeatOptional);
if (step_type == eStepTypeScripted) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/101981
More information about the lldb-commits
mailing list