From 6c0fb8967166018ae4e9c5a123347e81930ee7b1 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Sun, 14 Jan 2024 15:04:05 +0200 Subject: [PATCH] wasm: Fix IO.get() function signature --- bindings/wasm/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/wasm/lib.rs b/bindings/wasm/lib.rs index c7007a9a2..81b93480f 100644 --- a/bindings/wasm/lib.rs +++ b/bindings/wasm/lib.rs @@ -19,7 +19,7 @@ impl Database { pub struct IO {} impl limbo_core::StorageIO for IO { - fn get(&self, _page_idx: usize, _c: &mut limbo_core::Completion) -> Result<()> { + fn get(&self, _page_idx: usize, _c: Arc) -> Result<()> { todo!(); } }