()
| 12 | |
| 13 | impl DebuggingAlloc { |
| 14 | const fn new() -> Self { |
| 15 | Self { alloc_failure: std::sync::atomic::AtomicBool::new(false) } |
| 16 | } |
| 17 | |
| 18 | #[inline(always)] |
| 19 | fn check_alloc_failure(&self, ptr: *mut u8, layout: std::alloc::Layout) { |
nothing calls this directly
no outgoing calls
no test coverage detected