[Lldb-commits] [lldb] [lldb-dap] Refactoring breakpoints to not use the `g_dap` reference. (PR #115208)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 6 15:26:20 PST 2024
================
@@ -9,21 +9,27 @@
#ifndef LLDB_TOOLS_LLDB_DAP_BREAKPOINTBASE_H
#define LLDB_TOOLS_LLDB_DAP_BREAKPOINTBASE_H
-#include "llvm/Support/JSON.h"
#include <string>
+#include "llvm/Support/JSON.h"
+
+#include "DAPForward.h"
----------------
JDevlieghere wrote:
This should follow LLVM's [include style](https://llvm.org/docs/CodingStandards.html#include-style). Applies to all the other files in this PR as well.
https://github.com/llvm/llvm-project/pull/115208
More information about the lldb-commits
mailing list