================ @@ -7,10 +7,19 @@ //===----------------------------------------------------------------------===// #include "Breakpoint.h" -#include "DAP.h" + #include "JSONUtils.h" + +#include "lldb/API/SBAddress.h" #include "lldb/API/SBBreakpointLocation.h" +#include "lldb/API/SBLineEntry.h" + #include "llvm/ADT/StringExtras.h" +#include "llvm/Support/JSON.h" + +#include <stddef.h> +#include <stdint.h> +#include <string> ---------------- labath wrote:
```suggestion #include "JSONUtils.h" #include "lldb/API/SBAddress.h" #include "lldb/API/SBBreakpointLocation.h" #include "lldb/API/SBLineEntry.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/JSON.h" #include <cstddef> #include <cstdint> #include <string> ``` (I've replaced the c headers with c++ equivalents. I've also put the includes back into a separate group, which is the LLVM style and ensures clang-format will group them into the [preferred order](https://llvm.org/docs/CodingStandards.html#include-style). LLDB does not stick to that much, but I don't see a reason to regress that here) https://github.com/llvm/llvm-project/pull/115208 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits