Skip to content

Commit f318fe1

Browse files
committed
Rename paramter to arguments
1 parent 34bd7c5 commit f318fe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/tools/lldb-dap/Handler/RequestHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ void RequestHandler::PrintWelcomeMessage() {
226226
}
227227

228228
bool RequestHandler::HasInstructionGranularity(
229-
const llvm::json::Object &request) {
230-
if (std::optional<llvm::StringRef> value = request.getString("granularity"))
229+
const llvm::json::Object &arguments) {
230+
if (std::optional<llvm::StringRef> value = arguments.getString("granularity"))
231231
return value == "instruction";
232232
return false;
233233
}

0 commit comments

Comments
 (0)