[Lldb-commits] [lldb] [lldb-dap] assembly breakpoints (PR #139969)

Ely Ronnen via lldb-commits lldb-commits at lists.llvm.org
Sun May 18 07:01:49 PDT 2025


================
@@ -60,7 +60,7 @@
 
 namespace lldb_dap {
 
-typedef llvm::DenseMap<std::pair<uint32_t, uint32_t>, SourceBreakpoint>
+typedef std::map<std::pair<uint32_t, uint32_t>, SourceBreakpoint>
----------------
eronnen wrote:

changed to `std::map`  because I'm not sure how to remove from the map while iterating it with `DenseMap`

https://github.com/llvm/llvm-project/pull/139969


More information about the lldb-commits mailing list