remove unused function

This commit is contained in:
Corwin 2023-04-06 19:23:55 +01:00
parent 46faff254f
commit 182bae100c
No known key found for this signature in database

View file

@ -20,14 +20,6 @@ pub(crate) struct BumpAllocator {
inner: Mutex<RefCell<BumpAllocatorInner>>,
}
impl BumpAllocator {
pub const fn new(start_end: StartEnd) -> Self {
Self {
inner: Mutex::new(RefCell::new(BumpAllocatorInner::new(start_end))),
}
}
}
impl BumpAllocatorInner {
pub const fn new(start_end: StartEnd) -> Self {
Self {