Skip to content

Commit

Permalink
Rollup merge of #70930 - lcnr:patch-1, r=Dylan-DPC
Browse files Browse the repository at this point in the history
add tracking issue to `VecDeque::make_contiguous`

The tracking issue is #70929
  • Loading branch information
Dylan-DPC committed Apr 8, 2020
2 parents 268f09f + 839d229 commit 5848209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liballoc/collections/vec_deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2104,7 +2104,7 @@ impl<T> VecDeque<T> {
/// assert_eq!(slice, &[3, 2, 1] as &[_]);
/// }
/// ```
#[unstable(feature = "deque_make_contiguous", issue = "none")]
#[unstable(feature = "deque_make_contiguous", issue = "70929")]
pub fn make_contiguous(&mut self) -> &mut [T] {
if self.is_contiguous() {
let tail = self.tail;
Expand Down

0 comments on commit 5848209

Please sign in to comment.