From a7a01646cf52f1f70cf687d1a9ea850adbf3b4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Thu, 3 Oct 2024 15:57:31 +0200 Subject: [PATCH] Remove the useless Manually drop --- .../src/update/new/append_only_linked_list.rs | 20 +++++-------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/milli/src/update/new/append_only_linked_list.rs b/milli/src/update/new/append_only_linked_list.rs index 88b05c0ec..c08b9c090 100644 --- a/milli/src/update/new/append_only_linked_list.rs +++ b/milli/src/update/new/append_only_linked_list.rs @@ -1,6 +1,5 @@ -use std::fmt; -use std::mem::{self, ManuallyDrop}; use std::sync::atomic::AtomicPtr; +use std::{fmt, mem}; /// An append-only linked-list that returns a mutable references to the pushed items. pub struct AppendOnlyLinkedList { @@ -8,7 +7,7 @@ pub struct AppendOnlyLinkedList { } struct Node { - item: ManuallyDrop, + item: T, parent: AtomicPtr>, } @@ -23,10 +22,7 @@ impl AppendOnlyLinkedList { pub fn push(&self, item: T) -> &mut T { use std::sync::atomic::Ordering::{Relaxed, SeqCst}; - let node = Box::leak(Box::new(Node { - item: ManuallyDrop::new(item), - parent: AtomicPtr::default(), - })); + let node = Box::leak(Box::new(Node { item, parent: AtomicPtr::default() })); let mut head = self.head.load(SeqCst); loop { @@ -82,13 +78,10 @@ impl Iterator for IntoIter { if ptr.is_null() { None } else { - let mut node = unsafe { Box::from_raw(ptr) }; + let node = unsafe { Box::from_raw(ptr) }; // Let's set the next node to read to be the parent of this one self.0 = node.parent; - // ...and take the item from the Node before it is dropped - let item = unsafe { ManuallyDrop::take(&mut node.item) }; - Some(item) - // ...then drop the Node itself + Some(node.item) } } } @@ -100,9 +93,6 @@ impl Drop for IntoIter { let mut node = unsafe { Box::from_raw(ptr) }; // Let's set the next node to read to be the parent of this one ptr = *node.parent.get_mut(); - // ...and drop the item ourselves. - unsafe { ManuallyDrop::drop(&mut node.item) } - // ...then drop the Node itself } } }