export.rs - changing FuncPointer inner visibility to pub

This commit is contained in:
Yaron Wittenstein 2019-07-25 14:59:59 +03:00
parent 6cc31d3b49
commit 015616b541

View File

@ -34,7 +34,7 @@ impl FuncPointer {
FuncPointer(f)
}
pub(crate) fn inner(&self) -> *const vm::Func {
pub fn inner(&self) -> *const vm::Func {
self.0
}
}