[Lldb-commits] [lldb] Improve VSCode DAP logpoint value summary (PR #71723)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 8 10:52:47 PST 2023
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 5aa934e2af8727852dec0ec1cfa0cba05d858f70 e92d7125be6b6677d0553967bb3f8e821de3ea18 -- lldb/test/API/tools/lldb-dap/breakpoint/main.cpp lldb/tools/lldb-dap/BreakpointBase.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp b/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
index 84560dad92c2..a84546a95af1 100644
--- a/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
+++ b/lldb/test/API/tools/lldb-dap/breakpoint/main.cpp
@@ -28,7 +28,7 @@ int main(int argc, char const *argv[]) {
exit(1);
}
- const char * message = "Hello from main!";
+ const char *message = "Hello from main!";
int (*foo)(int) = (int (*)(int))dlsym(handle, "foo");
if (foo == nullptr) {
fprintf(stderr, "%s\n", dlerror());
``````````
</details>
https://github.com/llvm/llvm-project/pull/71723
More information about the lldb-commits
mailing list