[Lldb-commits] [lldb] [lldb][NFC] Remove Stream::Printf calls with constants in Commands/ (PR #210291)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 17 03:12:32 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 cpp -- lldb/source/Commands/CommandObjectExpression.cpp lldb/source/Commands/CommandObjectHelp.cpp lldb/source/Commands/CommandObjectPlatform.cpp lldb/source/Commands/CommandObjectProcess.cpp lldb/source/Commands/CommandObjectScripting.cpp lldb/source/Commands/CommandObjectTarget.cpp lldb/source/Commands/CommandObjectThread.cpp lldb/source/Commands/CommandObjectType.cpp lldb/source/Commands/CommandObjectWatchpoint.cpp lldb/source/Commands/CommandOptionArgumentTable.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/Commands/CommandObjectType.cpp b/lldb/source/Commands/CommandObjectType.cpp
index 62bb535a6..8a0fdd677 100644
--- a/lldb/source/Commands/CommandObjectType.cpp
+++ b/lldb/source/Commands/CommandObjectType.cpp
@@ -251,7 +251,8 @@ public:
}
} else {
LockedStreamFile locked_stream = error_sp->Lock();
- locked_stream.PutCString("error: unable to generate a function.\n");
+ locked_stream.PutCString(
+ "error: unable to generate a function.\n");
}
} else {
LockedStreamFile locked_stream = error_sp->Lock();
``````````
</details>
https://github.com/llvm/llvm-project/pull/210291
More information about the lldb-commits
mailing list