diff options
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 |