Remove memory_offset_addr impl

This commit is contained in:
Steve Akinyemi
2019-01-16 12:41:06 +01:00
parent e26590d370
commit aa01fd50e9
2 changed files with 2 additions and 19 deletions

View File

@ -39,7 +39,7 @@ pub struct ModuleInner {
pub sig_registry: SigRegistry,
}
pub struct Module(pub Rc<ModuleInner>);
pub struct Module(Rc<ModuleInner>);
impl Module {
pub(crate) fn new(inner: Rc<ModuleInner>) -> Self {