[Lldb-commits] [lldb] [LLDB][LLDB-DAP] Wire up DAP to listen to external progress events (PR #123826)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 21 13:50:33 PST 2025
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 1888a5f02fc53703c70abca2b12048e896d8c136 f16aab0a3b715cd294d61a4bb7278ff24610598a --extensions h,cpp -- lldb/include/lldb/API/SBDebugger.h lldb/tools/lldb-dap/lldb-dap.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/include/lldb/API/SBDebugger.h b/lldb/include/lldb/API/SBDebugger.h
index 7f56bf34c3..212e817e3c 100644
--- a/lldb/include/lldb/API/SBDebugger.h
+++ b/lldb/include/lldb/API/SBDebugger.h
@@ -42,12 +42,12 @@ public:
class LLDB_API SBDebugger {
public:
- FLAGS_ANONYMOUS_ENUM(){
- eBroadcastBitProgress = lldb::DebuggerBroadcastBit::eBroadcastBitProgress,
- eBroadcastBitWarning = lldb::DebuggerBroadcastBit::eBroadcastBitWarning,
- eBroadcastBitError = lldb::DebuggerBroadcastBit::eBroadcastBitError,
- eBroadcastBitExternalProgress =
- lldb::DebuggerBroadcastBit::eBroadcastBitExternalProgress,
+ FLAGS_ANONYMOUS_ENUM() {
+ eBroadcastBitProgress = lldb::DebuggerBroadcastBit::eBroadcastBitProgress,
+ eBroadcastBitWarning = lldb::DebuggerBroadcastBit::eBroadcastBitWarning,
+ eBroadcastBitError = lldb::DebuggerBroadcastBit::eBroadcastBitError,
+ eBroadcastBitExternalProgress =
+ lldb::DebuggerBroadcastBit::eBroadcastBitExternalProgress,
};
SBDebugger();
``````````
</details>
https://github.com/llvm/llvm-project/pull/123826
More information about the lldb-commits
mailing list