diff options
| author | Maybe Waffle <waffle.lapkin@gmail.com> | 2021-11-16 23:58:40 +0300 |
|---|---|---|
| committer | Maybe Waffle <waffle.lapkin@gmail.com> | 2021-11-16 23:58:40 +0300 |
| commit | f926c0e0d986baaf5caaec3bf21fa996422bb0b7 (patch) | |
| tree | 637581fa3113f196ebe24f6bfd5b363efcc52af3 | |
| parent | 8f5f094432bd1514b0edd37b892e2abd6c0de1c0 (diff) | |
| download | rust-f926c0e0d986baaf5caaec3bf21fa996422bb0b7.tar.gz rust-f926c0e0d986baaf5caaec3bf21fa996422bb0b7.zip | |
Fill in tracking issue for feature `const_align_offset`
| -rw-r--r-- | library/core/src/ptr/const_ptr.rs | 2 | ||||
| -rw-r--r-- | library/core/src/ptr/mut_ptr.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/ptr/const_ptr.rs b/library/core/src/ptr/const_ptr.rs index 3d85f97cbbe..344b483662a 100644 --- a/library/core/src/ptr/const_ptr.rs +++ b/library/core/src/ptr/const_ptr.rs @@ -879,7 +879,7 @@ impl<T: ?Sized> *const T { /// # } } /// ``` #[stable(feature = "align_offset", since = "1.36.0")] - #[rustc_const_unstable(feature = "const_align_offset", issue = "none")] + #[rustc_const_unstable(feature = "const_align_offset", issue = "90962")] pub const fn align_offset(self, align: usize) -> usize where T: Sized, diff --git a/library/core/src/ptr/mut_ptr.rs b/library/core/src/ptr/mut_ptr.rs index 98308ac3873..f3b2bdfefe5 100644 --- a/library/core/src/ptr/mut_ptr.rs +++ b/library/core/src/ptr/mut_ptr.rs @@ -1142,7 +1142,7 @@ impl<T: ?Sized> *mut T { /// # } } /// ``` #[stable(feature = "align_offset", since = "1.36.0")] - #[rustc_const_unstable(feature = "const_align_offset", issue = "none")] + #[rustc_const_unstable(feature = "const_align_offset", issue = "90962")] pub const fn align_offset(self, align: usize) -> usize where T: Sized, |
