Skip to content

Commit

Permalink
Deprecate the unstable Vec::resize_default
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmcm committed Jan 16, 2019
1 parent e2f221c commit 81cd1e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/liballoc/vec.rs
Expand Up @@ -1368,6 +1368,7 @@ impl<T: Default> Vec<T> {
/// # Examples
///
/// ```
/// # #![allow(deprecated)]
/// #![feature(vec_resize_default)]
///
/// let mut vec = vec![1, 2, 3];
Expand All @@ -1384,6 +1385,9 @@ impl<T: Default> Vec<T> {
/// [`Default`]: ../../std/default/trait.Default.html
/// [`Clone`]: ../../std/clone/trait.Clone.html
#[unstable(feature = "vec_resize_default", issue = "41758")]
#[rustc_deprecated(reason = "This is moving towards being removed in favor \
of `.resize_with(Default::default)`. If you disagree, please comment \
in the tracking issue.", since = "1.33.0")]
pub fn resize_default(&mut self, new_len: usize) {
let len = self.len();

Expand Down

0 comments on commit 81cd1e6

Please sign in to comment.