about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2021-11-16 23:58:40 +0300
committerMaybe Waffle <waffle.lapkin@gmail.com>2021-11-16 23:58:40 +0300
commitf926c0e0d986baaf5caaec3bf21fa996422bb0b7 (patch)
tree637581fa3113f196ebe24f6bfd5b363efcc52af3
parent8f5f094432bd1514b0edd37b892e2abd6c0de1c0 (diff)
downloadrust-f926c0e0d986baaf5caaec3bf21fa996422bb0b7.tar.gz
rust-f926c0e0d986baaf5caaec3bf21fa996422bb0b7.zip
Fill in tracking issue for feature `const_align_offset`
-rw-r--r--library/core/src/ptr/const_ptr.rs2
-rw-r--r--library/core/src/ptr/mut_ptr.rs2
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,