Skip to content

Commit c8522ca

Browse files
committed
[lldb] Fix macos build after e64cc75
1 parent 20a3fb9 commit c8522ca

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lldb/tools/lldb-server/lldb-gdbserver.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "llvm/Option/OptTable.h"
3535
#include "llvm/Option/Option.h"
3636
#include "llvm/Support/Errno.h"
37+
#include "llvm/Support/Error.h"
3738
#include "llvm/Support/WithColor.h"
3839

3940
#if defined(__linux__)
@@ -75,13 +76,11 @@ class NativeProcessManager : public NativeProcessProtocol::Manager {
7576
public:
7677
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
7778
Launch(ProcessLaunchInfo &launch_info,
78-
NativeProcessProtocol::NativeDelegate &delegate,
79-
MainLoop &mainloop) const override {
79+
NativeDelegate &native_delegate) override {
8080
llvm_unreachable("Not implemented");
8181
}
8282
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
83-
Attach(lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &delegate,
84-
MainLoop &mainloop) const override {
83+
Attach(lldb::pid_t pid, NativeDelegate &native_delegate) override {
8584
llvm_unreachable("Not implemented");
8685
}
8786
};

0 commit comments

Comments
 (0)