File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 34
34
#include " llvm/Option/OptTable.h"
35
35
#include " llvm/Option/Option.h"
36
36
#include " llvm/Support/Errno.h"
37
+ #include " llvm/Support/Error.h"
37
38
#include " llvm/Support/WithColor.h"
38
39
39
40
#if defined(__linux__)
@@ -75,13 +76,11 @@ class NativeProcessManager : public NativeProcessProtocol::Manager {
75
76
public:
76
77
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
77
78
Launch (ProcessLaunchInfo &launch_info,
78
- NativeProcessProtocol::NativeDelegate &delegate,
79
- MainLoop &mainloop) const override {
79
+ NativeDelegate &native_delegate) override {
80
80
llvm_unreachable (" Not implemented" );
81
81
}
82
82
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 {
85
84
llvm_unreachable (" Not implemented" );
86
85
}
87
86
};
You can’t perform that action at this time.
0 commit comments