[Lldb-commits] [lldb] [lldb-dap] Refactoring breakpoints to not use the `g_dap` reference. (PR #115208)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 7 01:13:43 PST 2024


================
@@ -9,21 +9,27 @@
 #ifndef LLDB_TOOLS_LLDB_DAP_EXCEPTIONBREAKPOINT_H
 #define LLDB_TOOLS_LLDB_DAP_EXCEPTIONBREAKPOINT_H
 
-#include <string>
+#include "DAPForward.h"
 
 #include "lldb/API/SBBreakpoint.h"
+#include "lldb/lldb-enumerations.h"
+
+#include <string>
+#include <utility>
----------------
labath wrote:

```suggestion
#include "DAPForward.h"
#include "lldb/API/SBBreakpoint.h"
#include "lldb/lldb-enumerations.h"
#include <string>
#include <utility>
```

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


More information about the lldb-commits mailing list