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,
};
pub struct SyncSched {
stdin_poll: Mutex<StdinPoll>,
}
pub struct SyncSched {}
impl SyncSched {
pub fn new() -> Self {
Self {
stdin_poll: StdinPoll::new(),
}
Self {}
}
}