You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the stabilization in rust-lang#127679 has reached stage0, 1.82-beta, we can
start using `&raw` freely, and even the soft-deprecated `ptr::addr_of!`
and `ptr::addr_of_mut!` can stop allowing the unstable feature.
I intentionally did not change any documentation or tests, but the rest
of those macro uses are all now using `&raw const` or `&raw mut` in the
standard library.
Copy file name to clipboardexpand all lines: core/src/slice/mod.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -883,8 +883,8 @@ impl<T> [T] {
883
883
pubconstfnswap(&mutself,a:usize,b:usize){
884
884
// FIXME: use swap_unchecked here (https://github.com/rust-lang/rust/pull/88540#issuecomment-944344343)
885
885
// Can't take two mutable loans from one vector, so instead use raw pointers.
886
-
let pa = ptr::addr_of_mut!(self[a]);
887
-
let pb = ptr::addr_of_mut!(self[b]);
886
+
let pa = &rawmutself[a];
887
+
let pb = &rawmutself[b];
888
888
// SAFETY: `pa` and `pb` have been created from safe mutable references and refer
889
889
// to elements in the slice and therefore are guaranteed to be valid and aligned.
890
890
// Note that accessing the elements behind `a` and `b` is checked and will
0 commit comments