wasm: Fix IO.get() function signature

This commit is contained in:
Pekka Enberg
2024-01-14 15:04:05 +02:00
parent 9af2a285b1
commit 6c0fb89671

View File

@@ -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<limbo_core::Completion>) -> Result<()> {
todo!();
}
}