Skip to content

Commit 904cf66

Browse files
committed
[lldb] Fix build error in lldb-dap.cpp (NFC)
llvm-project/lldb/tools/lldb-dap/lldb-dap.cpp:679:5: error: unknown type name 'kkkk' kkkk response["success"] = false; ^
1 parent 8bef2f2 commit 904cf66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ void request_attach(const llvm::json::Object &request) {
676676

677677
// Run any initialize LLDB commands the user specified in the launch.json
678678
if (llvm::Error err = g_dap.RunInitCommands()) {
679-
kkkk response["success"] = false;
679+
response["success"] = false;
680680
EmplaceSafeString(response, "message", llvm::toString(std::move(err)));
681681
g_dap.SendJSON(llvm::json::Value(std::move(response)));
682682
return;

0 commit comments

Comments
 (0)