File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ impl<T: ?Sized> *const T {
8484 /// let ptr: *const u8 = 0x1000 as _;
8585 /// assert!(ptr.try_cast_aligned::<AlignedI32>().is_some());
8686 /// ```
87- #[ unstable( feature = "pointer_try_cast_aligned" , since = "TBD " ) ]
87+ #[ unstable( feature = "pointer_try_cast_aligned" , issue = "141221 " ) ]
8888 #[ must_use = "this returns the result of the operation, \
8989 without modifying the original"]
9090 #[ inline( always) ]
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ impl<T: ?Sized> *mut T {
6666 /// let ptr: *mut u8 = 0x1000 as _;
6767 /// assert!(ptr.try_cast_aligned::<AlignedI32>().is_some());
6868 /// ```
69- #[ unstable( feature = "pointer_try_cast_aligned" , since = "TBD " ) ]
69+ #[ unstable( feature = "pointer_try_cast_aligned" , issue = "141221 " ) ]
7070 #[ must_use = "this returns the result of the operation, \
7171 without modifying the original"]
7272 #[ inline( always) ]
Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ impl<T: ?Sized> NonNull<T> {
507507 /// let non_null = NonNull::new(ptr).unwrap();
508508 /// assert!(non_null.try_cast_aligned::<AlignedI32>().is_some());
509509 /// ```
510- #[ unstable( feature = "pointer_try_cast_aligned" , since = "TBD " ) ]
510+ #[ unstable( feature = "pointer_try_cast_aligned" , issue = "141221 " ) ]
511511 #[ must_use = "this returns the result of the operation, \
512512 without modifying the original"]
513513 #[ inline( always) ]
You can’t perform that action at this time.
0 commit comments