From 015616b5414dfe07b65d5d0ff557d56b227cc90f Mon Sep 17 00:00:00 2001 From: Yaron Wittenstein Date: Thu, 25 Jul 2019 14:59:59 +0300 Subject: [PATCH] export.rs - changing `FuncPointer` `inner` visibility to `pub` --- lib/runtime-core/src/export.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }