Skip to content

Commit

Permalink
fix wasm binding
Browse files Browse the repository at this point in the history
  • Loading branch information
matzemathics committed Nov 11, 2024
1 parent f55ded4 commit e0a97d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nemo-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ impl NemoEngine {
};
let import_manager = ImportManager::new(resource_providers);

let engine = ExecutionEngine::initialize(&program.0, import_manager)
let engine = ExecutionEngine::initialize(program.0.clone(), import_manager)
.map_err(WasmOrInternalNemoError::Nemo)
.map_err(NemoError)?;

Expand Down

0 comments on commit e0a97d3

Please sign in to comment.