File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# ` offset_to `
2
2
3
- The tracking issue for this feature is: [ #0 ]
3
+ The tracking issue for this feature is: [ #41079 ]
4
4
5
- [ #0 ] : https://github.com/rust-lang/rust/issues/0
5
+ [ #41079 ] : https://github.com/rust-lang/rust/issues/41079
6
6
7
7
------------------------
Original file line number Diff line number Diff line change @@ -527,7 +527,7 @@ impl<T: ?Sized> *const T {
527
527
/// assert_eq!(unsafe { ptr2.offset(-2) }, ptr1);
528
528
/// }
529
529
/// ```
530
- #[ unstable( feature = "offset_to" , issue = "0 " ) ]
530
+ #[ unstable( feature = "offset_to" , issue = "41079 " ) ]
531
531
#[ inline]
532
532
pub fn offset_to ( self , other : * const T ) -> Option < isize > where T : Sized {
533
533
let size = mem:: size_of :: < T > ( ) ;
@@ -718,7 +718,7 @@ impl<T: ?Sized> *mut T {
718
718
/// assert_eq!(unsafe { ptr2.offset(-2) }, ptr1);
719
719
/// }
720
720
/// ```
721
- #[ unstable( feature = "offset_to" , issue = "0 " ) ]
721
+ #[ unstable( feature = "offset_to" , issue = "41079 " ) ]
722
722
#[ inline]
723
723
pub fn offset_to ( self , other : * const T ) -> Option < isize > where T : Sized {
724
724
let size = mem:: size_of :: < T > ( ) ;
You can’t perform that action at this time.
0 commit comments