diff --git a/lib/runtime-core/src/export.rs b/lib/runtime-core/src/export.rs index 81e0eae92..1be8cb283 100644 --- a/lib/runtime-core/src/export.rs +++ b/lib/runtime-core/src/export.rs @@ -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 } }