Skip to content

Commit 4d71789

Browse files
committed
Applying clang-format.
1 parent c54157f commit 4d71789

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/tools/lldb-dap/lldb-dap.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3448,7 +3448,8 @@ void request_source(DAP &dap, const llvm::json::Object &request) {
34483448
response["success"] = false;
34493449
response["message"] = "source not found";
34503450
} else {
3451-
lldb::SBInstructionList insts = frame.GetSymbol().GetInstructions(dap.target);
3451+
lldb::SBInstructionList insts =
3452+
frame.GetSymbol().GetInstructions(dap.target);
34523453
lldb::SBStream stream;
34533454
insts.GetDescription(stream);
34543455
body["content"] = stream.GetData();

0 commit comments

Comments
 (0)