diff --git a/tooling/agent/debugger_impl.cpp b/tooling/agent/debugger_impl.cpp index 96ab29f9eafa4fef92b2da9a34092d525f7df132..48f066f3e72092f7a1b74da210a2d62855ffcae9 100644 --- a/tooling/agent/debugger_impl.cpp +++ b/tooling/agent/debugger_impl.cpp @@ -414,10 +414,10 @@ void DebuggerImpl::DispatcherImpl::SetBreakpointByUrl(const DispatchRequest &req return; } - std::string out_id; + std::string outId; std::vector> outLocations; - DispatchResponse response = debugger_->SetBreakpointByUrl(*params, &out_id, &outLocations); - SetBreakpointByUrlReturns result(out_id, std::move(outLocations)); + DispatchResponse response = debugger_->SetBreakpointByUrl(*params, &outId, &outLocations); + SetBreakpointByUrlReturns result(outId, std::move(outLocations)); SendResponse(request, response, result); }