Skip to content

Commit e7a1e42

Browse files
committed
use mem::swap instead of ptr::swap_nonoverlapping
1 parent 26cfd21 commit e7a1e42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ impl<T> Cell<T> {
450450
// either of these `Cell`s. We also excluded shenanigans like partially overlapping `Cell`s,
451451
// so `swap` will just properly copy two full values of type `T` back and forth.
452452
unsafe {
453-
ptr::swap_nonoverlapping(self.value.get(), other.value.get(), 1);
453+
mem::swap(&mut *self.value.get(), &mut *other.value.get());
454454
}
455455
}
456456

0 commit comments

Comments
 (0)