mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-12 08:31:21 +00:00
fix(runtime-core) Use explicit dyn
for trait objects.
This commit is contained in:
@ -254,7 +254,7 @@ where
|
||||
|
||||
struct PolymorphicContext {
|
||||
arg_types: Vec<Type>,
|
||||
func: Box<Fn(&mut vm::Ctx, &[Value]) -> Vec<Value>>,
|
||||
func: Box<dyn Fn(&mut vm::Ctx, &[Value]) -> Vec<Value>>,
|
||||
}
|
||||
unsafe extern "C" fn enter_host_polymorphic(
|
||||
ctx: *const CallContext,
|
||||
|
Reference in New Issue
Block a user