File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
lldb/tools/lldb-dap/Handler Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " DAP.h"
10
- #include " EventHelper.h"
11
- #include " JSONUtils.h"
12
10
#include " Protocol/ProtocolRequests.h"
13
11
#include " RequestHandler.h"
14
12
#include < vector>
@@ -22,7 +20,7 @@ namespace lldb_dap {
22
20
llvm::Expected<protocol::SetBreakpointsResponseBody>
23
21
SetBreakpointsRequestHandler::Run (
24
22
const protocol::SetBreakpointsArguments &args) const {
25
- const auto response_breakpoints =
23
+ std::vector<protocol::Breakpoint> response_breakpoints =
26
24
dap.SetSourceBreakpoints (args.source , args.breakpoints );
27
25
return protocol::SetBreakpointsResponseBody{std::move (response_breakpoints)};
28
26
}
You can’t perform that action at this time.
0 commit comments