diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-01 18:32:38 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-01 18:32:38 -0500 |
commit | 1867170d185c3480542773a74876175e341b91eb (patch) | |
tree | 64e5f943a1d3d09d875309077e6ee4bf86aff340 /crates/alloc_buddy/src/free_list.rs | |
parent | 20c90c707d5f6870bd7d545f06f669cd839b6348 (diff) |
Simplify debug printing of the buddy allocator.
Diffstat (limited to 'crates/alloc_buddy/src/free_list.rs')
-rw-r--r-- | crates/alloc_buddy/src/free_list.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/alloc_buddy/src/free_list.rs b/crates/alloc_buddy/src/free_list.rs index 973ad2c..803f5ad 100644 --- a/crates/alloc_buddy/src/free_list.rs +++ b/crates/alloc_buddy/src/free_list.rs @@ -82,7 +82,6 @@ impl FreeList { } } -/// This impl will panic until the sentinel has been self-linked. impl fmt::Debug for FreeList { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { // SAFETY: This is sound as long as the sentinel was valid, which is a precondition of |