Skip to content

Commit 8c613db

Browse files
committed
Use transmute_unchecked in NonZero::new.
1 parent c29082f commit 8c613db

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/core/src/num/nonzero.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use crate::intrinsics;
88
use crate::marker::StructuralEq;
99
use crate::marker::StructuralPartialEq;
1010
use crate::ops::{BitOr, BitOrAssign, Div, Neg, Rem};
11-
use crate::ptr;
1211
use crate::str::FromStr;
1312

1413
use super::from_str_radix;
@@ -97,7 +96,7 @@ where
9796
pub const fn new(n: T) -> Option<Self> {
9897
// SAFETY: Memory layout optimization guarantees that `Option<NonZero<T>>` has
9998
// the same layout and size as `T`, with `0` representing `None`.
100-
unsafe { ptr::read(ptr::addr_of!(n).cast()) }
99+
unsafe { intrinsics::transmute_unchecked(n) }
101100
}
102101

103102
/// Creates a non-zero without checking whether the value is non-zero.

0 commit comments

Comments
 (0)