Skip to content

Commit f926c0e

Browse files
committed
Fill in tracking issue for feature const_align_offset
1 parent 8f5f094 commit f926c0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/ptr/const_ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ impl<T: ?Sized> *const T {
879879
/// # } }
880880
/// ```
881881
#[stable(feature = "align_offset", since = "1.36.0")]
882-
#[rustc_const_unstable(feature = "const_align_offset", issue = "none")]
882+
#[rustc_const_unstable(feature = "const_align_offset", issue = "90962")]
883883
pub const fn align_offset(self, align: usize) -> usize
884884
where
885885
T: Sized,

library/core/src/ptr/mut_ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ impl<T: ?Sized> *mut T {
11421142
/// # } }
11431143
/// ```
11441144
#[stable(feature = "align_offset", since = "1.36.0")]
1145-
#[rustc_const_unstable(feature = "const_align_offset", issue = "none")]
1145+
#[rustc_const_unstable(feature = "const_align_offset", issue = "90962")]
11461146
pub const fn align_offset(self, align: usize) -> usize
11471147
where
11481148
T: Sized,

0 commit comments

Comments
 (0)