diff options
| author | Ashley Mannix <kodraus@hey.com> | 2021-02-10 09:50:59 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-10 09:50:59 +1000 |
| commit | 8ff7b75c016af8bebf995f12e7e5b246ad849470 (patch) | |
| tree | d2fa027f7aff0c20e1b6342b91249b63b6790a5d /library | |
| parent | 76223fafb4f6d552ff7b310a00dd5ee23cb4a1b6 (diff) | |
| download | rust-8ff7b75c016af8bebf995f12e7e5b246ad849470.tar.gz rust-8ff7b75c016af8bebf995f12e7e5b246ad849470.zip | |
update tracking issue for vec_split_at_spare
Diffstat (limited to 'library')
| -rw-r--r-- | library/alloc/src/vec/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs index 8620200b038..c7b4c98041b 100644 --- a/library/alloc/src/vec/mod.rs +++ b/library/alloc/src/vec/mod.rs @@ -1879,7 +1879,7 @@ impl<T, A: Allocator> Vec<T, A> { /// /// assert_eq!(&v, &[1, 1, 2, 4, 8, 12, 16]); /// ``` - #[unstable(feature = "vec_split_at_spare", issue = "none")] + #[unstable(feature = "vec_split_at_spare", issue = "81944")] #[inline] pub fn split_at_spare_mut(&mut self) -> (&mut [T], &mut [MaybeUninit<T>]) { let ptr = self.as_mut_ptr(); |
