about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2019-10-25 14:33:07 +0200
committerMara Bos <m-ou.se@m-ou.se>2019-10-25 14:33:07 +0200
commitf1b69b0a871a5d78504c0dc197e0ebb477de653c (patch)
tree56ea017828b1f8c4a1194fd691214e180e715bf9 /src/libcore
parent4936f96d42eeaa65e4b169113796f29c8c769f39 (diff)
downloadrust-f1b69b0a871a5d78504c0dc197e0ebb477de653c.tar.gz
rust-f1b69b0a871a5d78504c0dc197e0ebb477de653c.zip
Add slice_ptr_range tracking issue number.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/slice/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs
index 0770b0c6f90..0a115ce84ca 100644
--- a/src/libcore/slice/mod.rs
+++ b/src/libcore/slice/mod.rs
@@ -434,7 +434,7 @@ impl<T> [T] {
     /// ```
     ///
     /// [`as_ptr`]: #method.as_ptr
-    #[unstable(feature = "slice_ptr_range", issue = "0")]
+    #[unstable(feature = "slice_ptr_range", issue = "65807")]
     #[inline]
     pub fn as_ptr_range(&self) -> Range<*const T> {
         let start = self.as_ptr();
@@ -458,7 +458,7 @@ impl<T> [T] {
     /// common in C++.
     ///
     /// [`as_mut_ptr`]: #method.as_mut_ptr
-    #[unstable(feature = "slice_ptr_range", issue = "0")]
+    #[unstable(feature = "slice_ptr_range", issue = "65807")]
     #[inline]
     pub fn as_mut_ptr_range(&mut self) -> Range<*mut T> {
         let start = self.as_mut_ptr();