(&self, layout: Layout)
| 24 | |
| 25 | unsafe impl<T: GlobalAlloc> GlobalAlloc for AssumeSingleThreaded<T> { |
| 26 | unsafe fn alloc(&self, layout: Layout) -> *mut u8 { |
| 27 | self.inner.alloc(layout) |
| 28 | } |
| 29 | |
| 30 | unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { |
| 31 | self.inner.dealloc(ptr, layout); |
nothing calls this directly
no outgoing calls
no test coverage detected