Update bin/wasmer and run cargo fmt.

This commit is contained in:
losfair
2019-05-17 01:15:05 +08:00
parent e7297b9465
commit 14fcd78b30
6 changed files with 60 additions and 44 deletions

View File

@ -15,10 +15,7 @@ use crate::{
},
vm,
};
use std::{
slice,
fmt::Debug,
};
use std::{fmt::Debug, slice};
pub const INTERNALS_SIZE: usize = 256;

View File

@ -41,7 +41,7 @@ impl fmt::Debug for InternalEvent {
}
pub struct BkptInfo {
pub throw: unsafe extern "C" fn () -> !,
pub throw: unsafe extern "C" fn() -> !,
}
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator<E>, RM: RunnableModule, E: Debug> {