@@ -285,7 +285,7 @@ impl<T: ?Sized> *const T {
285285 /// ```
286286 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
287287 #[ must_use = "returns a new pointer rather than modifying its argument" ]
288- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
288+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
289289 #[ inline( always) ]
290290 pub const unsafe fn offset ( self , count : isize ) -> * const T
291291 where
@@ -347,7 +347,7 @@ impl<T: ?Sized> *const T {
347347 /// ```
348348 #[ stable( feature = "ptr_wrapping_offset" , since = "1.16.0" ) ]
349349 #[ must_use = "returns a new pointer rather than modifying its argument" ]
350- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
350+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
351351 #[ inline( always) ]
352352 pub const fn wrapping_offset ( self , count : isize ) -> * const T
353353 where
@@ -566,7 +566,7 @@ impl<T: ?Sized> *const T {
566566 /// ```
567567 #[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
568568 #[ must_use = "returns a new pointer rather than modifying its argument" ]
569- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
569+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
570570 #[ inline( always) ]
571571 pub const unsafe fn add ( self , count : usize ) -> Self
572572 where
@@ -630,7 +630,7 @@ impl<T: ?Sized> *const T {
630630 /// ```
631631 #[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
632632 #[ must_use = "returns a new pointer rather than modifying its argument" ]
633- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
633+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
634634 #[ inline]
635635 pub const unsafe fn sub ( self , count : usize ) -> Self
636636 where
@@ -693,7 +693,7 @@ impl<T: ?Sized> *const T {
693693 /// ```
694694 #[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
695695 #[ must_use = "returns a new pointer rather than modifying its argument" ]
696- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
696+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
697697 #[ inline( always) ]
698698 pub const fn wrapping_add ( self , count : usize ) -> Self
699699 where
@@ -755,7 +755,7 @@ impl<T: ?Sized> *const T {
755755 /// ```
756756 #[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
757757 #[ must_use = "returns a new pointer rather than modifying its argument" ]
758- #[ rustc_const_unstable ( feature = "const_ptr_offset" , issue = "71499 " ) ]
758+ #[ rustc_const_stable ( feature = "const_ptr_offset" , since = "1.61.0 " ) ]
759759 #[ inline]
760760 pub const fn wrapping_sub ( self , count : usize ) -> Self
761761 where
0 commit comments