Skip to content

Commit 41cd571

Browse files
committed
move const fn with a null check into const_ptr_is_null gate
1 parent f28b1d1 commit 41cd571

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/ptr/const_ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ impl<T: ?Sized> *const T {
268268
/// }
269269
/// ```
270270
#[stable(feature = "ptr_as_ref", since = "1.9.0")]
271-
#[rustc_const_unstable(feature = "const_ptr_as_ref", issue = "91822")]
271+
#[rustc_const_unstable(feature = "const_ptr_is_null", issue = "74939")]
272272
#[inline]
273273
pub const unsafe fn as_ref<'a>(self) -> Option<&'a T> {
274274
// SAFETY: the caller must guarantee that `self` is valid

core/src/ptr/mut_ptr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl<T: ?Sized> *mut T {
276276
/// }
277277
/// ```
278278
#[stable(feature = "ptr_as_ref", since = "1.9.0")]
279-
#[rustc_const_unstable(feature = "const_ptr_as_ref", issue = "91822")]
279+
#[rustc_const_unstable(feature = "const_ptr_is_null", issue = "74939")]
280280
#[inline]
281281
pub const unsafe fn as_ref<'a>(self) -> Option<&'a T> {
282282
// SAFETY: the caller must guarantee that `self` is valid for a
@@ -595,7 +595,7 @@ impl<T: ?Sized> *mut T {
595595
/// println!("{s:?}"); // It'll print: "[4, 2, 3]".
596596
/// ```
597597
#[stable(feature = "ptr_as_ref", since = "1.9.0")]
598-
#[rustc_const_unstable(feature = "const_ptr_as_ref", issue = "91822")]
598+
#[rustc_const_unstable(feature = "const_ptr_is_null", issue = "74939")]
599599
#[inline]
600600
pub const unsafe fn as_mut<'a>(self) -> Option<&'a mut T> {
601601
// SAFETY: the caller must guarantee that `self` is be valid for

0 commit comments

Comments
 (0)