[Lldb-commits] [lldb] [lldb-dap] Move requests into their own object/file (PR #128262)
via lldb-commits
lldb-commits at lists.llvm.org
Sat Feb 22 11:57:59 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 fb25216209c4d6f686bcb9f7fbc3ac0a8f5a61fa e2728b6dfba0f9cef3cb9def7d01567dc3e9b6a8 --extensions h,cpp -- lldb/tools/lldb-dap/Handler/AttachHandler.cpp lldb/tools/lldb-dap/Handler/RequestHandler.cpp lldb/tools/lldb-dap/Handler/RequestHandler.h lldb/tools/lldb-dap/DAP.cpp lldb/tools/lldb-dap/DAP.h lldb/tools/lldb-dap/lldb-dap.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/tools/lldb-dap/Handler/RequestHandler.h b/lldb/tools/lldb-dap/Handler/RequestHandler.h
index a0b66997ff..94acc12412 100644
--- a/lldb/tools/lldb-dap/Handler/RequestHandler.h
+++ b/lldb/tools/lldb-dap/Handler/RequestHandler.h
@@ -22,7 +22,7 @@ public:
/// RequestHandler are not copyable.
/// @{
RequestHandler(const RequestHandler &) = delete;
- RequestHandler& operator=(const RequestHandler &) = delete;
+ RequestHandler &operator=(const RequestHandler &) = delete;
/// @}
virtual ~RequestHandler() = default;
``````````
</details>
https://github.com/llvm/llvm-project/pull/128262
More information about the lldb-commits
mailing list