core/io: Untie MemoryIO's lifetime of the IO layer

This commit is contained in:
Diego Reis 2025-04-04 00:35:36 -03:00
parent 79f8b83cbe
commit d9bf383507
11 changed files with 23 additions and 33 deletions

View file

@ -98,7 +98,7 @@ impl IO for SimulatorIO {
self.rng.borrow_mut().next_u64() as i64
}
fn get_memory_io(&self) -> Option<Arc<limbo_core::MemoryIO>> {
fn get_memory_io(&self) -> Arc<limbo_core::MemoryIO> {
todo!()
}
}