File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 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;
7474// Dummy implementation to make sure the code compiles
7575class NativeProcessManager : public NativeProcessProtocol ::Manager {
7676public:
77+ NativeProcessManager (MainLoop &mainloop)
78+ : NativeProcessProtocol::Manager(mainloop) {}
79+
7780 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
7881 Launch (ProcessLaunchInfo &launch_info,
79- NativeDelegate &native_delegate) override {
82+ NativeProcessProtocol:: NativeDelegate &native_delegate) override {
8083 llvm_unreachable (" Not implemented" );
8184 }
8285 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 {
8488 llvm_unreachable (" Not implemented" );
8589 }
8690};
You can’t perform that action at this time.
0 commit comments