File tree 1 file changed +6
-2
lines changed 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,17 @@ typedef NativeProcessWindows::Manager NativeProcessManager;
74
74
// Dummy implementation to make sure the code compiles
75
75
class NativeProcessManager : public NativeProcessProtocol ::Manager {
76
76
public:
77
+ NativeProcessManager (MainLoop &mainloop)
78
+ : NativeProcessProtocol::Manager(mainloop) {}
79
+
77
80
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
78
81
Launch (ProcessLaunchInfo &launch_info,
79
- NativeDelegate &native_delegate) override {
82
+ NativeProcessProtocol:: NativeDelegate &native_delegate) override {
80
83
llvm_unreachable (" Not implemented" );
81
84
}
82
85
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
83
- Attach (lldb::pid_t pid, NativeDelegate &native_delegate) override {
86
+ Attach (lldb::pid_t pid,
87
+ NativeProcessProtocol::NativeDelegate &native_delegate) override {
84
88
llvm_unreachable (" Not implemented" );
85
89
}
86
90
};
You can’t perform that action at this time.
0 commit comments