fix warning

This commit is contained in:
Pat Hickey
2021-01-26 12:18:39 -08:00
parent f4a6b95965
commit c98d6f6201

View File

@@ -13,15 +13,11 @@ use wasi_c2::{
}, },
Error, ErrorExt, Error, ErrorExt,
}; };
pub struct SyncSched { pub struct SyncSched {}
stdin_poll: Mutex<StdinPoll>,
}
impl SyncSched { impl SyncSched {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {}
stdin_poll: StdinPoll::new(),
}
} }
} }