From 5ee24d781771f1842bb6e3314bbd2c233ce8fc97 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Wed, 23 Jan 2019 22:38:43 -0600 Subject: [PATCH] Revert more visibility changes --- lib/runtime-core/src/instance.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/runtime-core/src/instance.rs b/lib/runtime-core/src/instance.rs index a37926799..0f57699a7 100644 --- a/lib/runtime-core/src/instance.rs +++ b/lib/runtime-core/src/instance.rs @@ -16,11 +16,11 @@ use crate::{ use std::mem; use std::rc::Rc; -pub struct InstanceInner { +pub(crate) struct InstanceInner { #[allow(dead_code)] pub(crate) backing: LocalBacking, import_backing: ImportBacking, - pub vmctx: Box, + vmctx: Box, } /// A WebAssembly instance