[Lldb-commits] [lldb] [llvm] [lldb-dap] Support column breakpoints (PR #113787)
via lldb-commits
lldb-commits at lists.llvm.org
Sat Oct 26 20:42:35 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 e146c1867e8decfd423034f63a3a863733e03f04 af45bc2e24623d7225d24a4680a28630d67d636e --extensions h,cpp -- lldb/tools/lldb-dap/DAP.h lldb/tools/lldb-dap/lldb-dap.cpp llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/tools/lldb-dap/DAP.h b/lldb/tools/lldb-dap/DAP.h
index 49c2b5b34a..8ca46a7ea7 100644
--- a/lldb/tools/lldb-dap/DAP.h
+++ b/lldb/tools/lldb-dap/DAP.h
@@ -67,7 +67,8 @@
namespace lldb_dap {
-typedef llvm::DenseMap<std::pair<uint32_t, uint32_t>, SourceBreakpoint> SourceBreakpointMap;
+typedef llvm::DenseMap<std::pair<uint32_t, uint32_t>, SourceBreakpoint>
+ SourceBreakpointMap;
typedef llvm::StringMap<FunctionBreakpoint> FunctionBreakpointMap;
typedef llvm::DenseMap<lldb::addr_t, InstructionBreakpoint>
InstructionBreakpointMap;
``````````
</details>
https://github.com/llvm/llvm-project/pull/113787
More information about the lldb-commits
mailing list