Skip to content

Commit

Permalink
Fixes wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuel-keller committed May 24, 2024
1 parent 4002fa4 commit b4280d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/dbs/iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ impl Iterator {
stk: &mut Stk,
ctx: &Context<'_>,
opt: &Options,
txn: &Transaction,
stm: &Statement<'_>,
) -> Result<(), Error> {
// Prevent deep recursion
Expand All @@ -471,7 +470,7 @@ impl Iterator {
let mut distinct = SyncDistinct::new(ctx);
// Process all prepared values
for v in mem::take(&mut self.entries) {
v.iterate(stk, ctx, opt, txn, stm, self, distinct.as_mut()).await?;
v.iterate(stk, ctx, opt, stm, self, distinct.as_mut()).await?;
}
// Everything processed ok
Ok(())
Expand Down

0 comments on commit b4280d8

Please sign in to comment.