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

@ -177,7 +177,7 @@ impl limbo_core::IO for IO {
todo!();
}
fn get_memory_io(&self) -> Option<Arc<limbo_core::MemoryIO>> {
todo!()
fn get_memory_io(&self) -> Arc<limbo_core::MemoryIO> {
Arc::new(limbo_core::MemoryIO::new())
}
}