mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-26 23:21:11 +00:00
[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; ^
This commit is contained in:
parent
8bef2f27a0
commit
904cf66ec1
@ -676,7 +676,7 @@ void request_attach(const llvm::json::Object &request) {
|
|||||||
|
|
||||||
// Run any initialize LLDB commands the user specified in the launch.json
|
// Run any initialize LLDB commands the user specified in the launch.json
|
||||||
if (llvm::Error err = g_dap.RunInitCommands()) {
|
if (llvm::Error err = g_dap.RunInitCommands()) {
|
||||||
kkkk response["success"] = false;
|
response["success"] = false;
|
||||||
EmplaceSafeString(response, "message", llvm::toString(std::move(err)));
|
EmplaceSafeString(response, "message", llvm::toString(std::move(err)));
|
||||||
g_dap.SendJSON(llvm::json::Value(std::move(response)));
|
g_dap.SendJSON(llvm::json::Value(std::move(response)));
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user