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 77// ===----------------------------------------------------------------------===//
88
99#include " DAP.h"
10- #include " EventHelper.h"
11- #include " JSONUtils.h"
1210#include " Protocol/ProtocolRequests.h"
1311#include " RequestHandler.h"
1412#include < vector>
@@ -22,7 +20,7 @@ namespace lldb_dap {
2220llvm::Expected<protocol::SetBreakpointsResponseBody>
2321SetBreakpointsRequestHandler::Run (
2422 const protocol::SetBreakpointsArguments &args) const {
25- const auto response_breakpoints =
23+ std::vector<protocol::Breakpoint> response_breakpoints =
2624 dap.SetSourceBreakpoints (args.source , args.breakpoints );
2725 return protocol::SetBreakpointsResponseBody{std::move (response_breakpoints)};
2826}
You can’t perform that action at this time.
0 commit comments