Make DynFunc::func_index private.

This commit is contained in:
losfair 2019-03-19 11:52:27 +08:00
parent 2ab2205d6b
commit ebaf2dc5a8

View File

@ -434,7 +434,7 @@ pub struct DynFunc<'a> {
pub(crate) signature: Arc<FuncSig>,
module: &'a ModuleInner,
pub(crate) instance_inner: &'a InstanceInner,
pub func_index: FuncIndex,
func_index: FuncIndex,
}
impl<'a> DynFunc<'a> {