Removed unnecessary(?) lifetime in virtual memory api

This commit is contained in:
Andrew Golovashevich 2025-12-20 01:30:18 +03:00
parent d9574164f2
commit cef7aecc2b

View File

@ -1,7 +1,5 @@
use std::fs::read_to_string;
pub unsafe trait VirtualMemoryApi: Sized + Drop { pub unsafe trait VirtualMemoryApi: Sized + Drop {
type Reservation<'s>: Reservation + 's type Reservation<'s>: Reservation
where where
Self: 's; Self: 's;