We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55aa8ef commit 53961f8Copy full SHA for 53961f8
lldb/tools/lldb-dap/DAP.cpp
@@ -711,12 +711,12 @@ bool DAP::HandleObject(const protocol::Message &M) {
711
[](const std::string &message) -> llvm::StringRef {
712
return message;
713
},
714
- [](const protocol::Response::Message &message)
+ [](const protocol::ResponseMessage &message)
715
-> llvm::StringRef {
716
switch (message) {
717
- case protocol::Response::Message::cancelled:
+ case protocol::eResponseMessageCancelled:
718
return "cancelled";
719
- case protocol::Response::Message::notStopped:
+ case protocol::eResponseMessageNotStopped:
720
return "notStopped";
721
}
722
}),
0 commit comments