We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c01ae69 commit b76ca5dCopy full SHA for b76ca5d
src/slab.rs
@@ -2,10 +2,11 @@
2
//!
3
//! TODO: comments
4
5
-use super::{AllocError, AllocResult, BaseAllocator, ByteAllocator};
+use ax_slab_allocator::Heap;
6
use core::alloc::Layout;
7
use core::ptr::NonNull;
8
-use ax_slab_allocator::Heap;
+
9
+use super::{AllocError, AllocResult, BaseAllocator, ByteAllocator};
10
11
/// A byte-granularity memory allocator based on the [slab allocator].
12
///
0 commit comments