1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00

fix build on macos

This commit is contained in:
Wez Furlong 2019-09-15 19:06:20 -07:00
parent 2ace5c7bb4
commit 1c8ba615f3
2 changed files with 5 additions and 1 deletions

View File

@ -4,11 +4,11 @@ use crate::frontend::FrontEnd;
use crate::mux::tab::Tab; use crate::mux::tab::Tab;
use crate::mux::window::WindowId as MuxWindowId; use crate::mux::window::WindowId as MuxWindowId;
use crate::mux::Mux; use crate::mux::Mux;
use ::window::*;
use failure::Fallible; use failure::Fallible;
use promise::{BasicExecutor, Executor, SpawnFunc}; use promise::{BasicExecutor, Executor, SpawnFunc};
use std::rc::Rc; use std::rc::Rc;
use std::sync::Arc; use std::sync::Arc;
use ::window::*;
mod termwindow; mod termwindow;

View File

@ -58,6 +58,10 @@ impl Connection {
} }
})); }));
} }
pub fn executor() -> impl BasicExecutor {
SpawnQueueExecutor {}
}
} }
impl ConnectionOps for Connection { impl ConnectionOps for Connection {