File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ impl<T> MaybeUninit<T> {
405
405
/// (Notice that the rules around references to uninitialized data are not finalized yet, but
406
406
/// until they are, it is advisable to avoid them.)
407
407
#[ stable( feature = "maybe_uninit" , since = "1.36.0" ) ]
408
- #[ rustc_const_unstable( feature= "maybe_uninit_as_ptr ", issue = "none " ) ]
408
+ #[ rustc_const_unstable( feature = "const_maybe_uninit_as_ptr ", issue = "75251 " ) ]
409
409
#[ inline( always) ]
410
410
pub const fn as_ptr ( & self ) -> * const T {
411
411
// `MaybeUninit` and `ManuallyDrop` are both `repr(transparent)` so we can cast the pointer.
@@ -444,7 +444,7 @@ impl<T> MaybeUninit<T> {
444
444
/// (Notice that the rules around references to uninitialized data are not finalized yet, but
445
445
/// until they are, it is advisable to avoid them.)
446
446
#[ stable( feature = "maybe_uninit" , since = "1.36.0" ) ]
447
- #[ rustc_const_unstable( feature= "maybe_uninit_as_ptr ", issue = "none " ) ]
447
+ #[ rustc_const_unstable( feature = "const_maybe_uninit_as_ptr ", issue = "75251 " ) ]
448
448
#[ inline( always) ]
449
449
pub const fn as_mut_ptr ( & mut self ) -> * mut T {
450
450
// `MaybeUninit` and `ManuallyDrop` are both `repr(transparent)` so we can cast the pointer.
You can’t perform that action at this time.
0 commit comments