mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-13 00:51:20 +00:00
Fixup/comment out to get things compiling
This commit is contained in:
@ -195,9 +195,6 @@ impl Instance {
|
||||
Module::new(Arc::clone(&self.module))
|
||||
}
|
||||
|
||||
pub fn ctx(&mut self) -> &mut vm::Ctx {
|
||||
&mut self.inner.vmctx
|
||||
}
|
||||
}
|
||||
|
||||
impl Instance {
|
||||
|
@ -230,7 +230,7 @@ impl Memory {
|
||||
f(t_buffer)
|
||||
}
|
||||
|
||||
pub(crate) fn vm_local_memory(&mut self) -> *mut vm::LocalMemory {
|
||||
pub fn vm_local_memory(&mut self) -> *mut vm::LocalMemory {
|
||||
&mut *self.storage.borrow_mut().1
|
||||
}
|
||||
}
|
||||
|
@ -112,7 +112,7 @@ impl Table {
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn vm_local_table(&mut self) -> *mut vm::LocalTable {
|
||||
pub fn vm_local_table(&mut self) -> *mut vm::LocalTable {
|
||||
&mut self.storage.borrow_mut().1
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user