Skip to content

Commit

Permalink
fix bug for older rust toolchain (bench CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed Nov 29, 2023
1 parent 8097876 commit 9e6e025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/wasmi/src/engine/regmach/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl EngineInner {
/// # Errors
///
/// If the Wasm execution traps or runs out of resources.
pub fn execute_func_resumable_regmach<T, Results>(
pub(crate) fn execute_func_resumable_regmach<T, Results>(
&self,
mut ctx: StoreContextMut<T>,
func: &Func,
Expand Down Expand Up @@ -114,7 +114,7 @@ impl EngineInner {
/// # Errors
///
/// If the Wasm execution traps or runs out of resources.
pub fn resume_func_regmach<T, Results>(
pub(crate) fn resume_func_regmach<T, Results>(
&self,
ctx: StoreContextMut<T>,
mut invocation: ResumableInvocation,
Expand Down

0 comments on commit 9e6e025

Please sign in to comment.