Skip to content

Commit

Permalink
update tracking issue for vec_split_at_spare
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Feb 9, 2021
1 parent 76223fa commit 8ff7b75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/src/vec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 8ff7b75

Please sign in to comment.