diff options
| author | Tamir Duberstein <tamird@gmail.com> | 2015-12-12 07:55:28 -0500 |
|---|---|---|
| committer | Tamir Duberstein <tamird@gmail.com> | 2015-12-13 01:02:12 -0500 |
| commit | b964b1d043b8db7a39d7502c068f07cd399e375f (patch) | |
| tree | 7b31acb4e7dfe8e45e40eb8b5913b92e530a9d3d /src/libsyntax/util | |
| parent | 722905fda0bc7ef818bccc4b3f59641533269f36 (diff) | |
| download | rust-b964b1d043b8db7a39d7502c068f07cd399e375f.tar.gz rust-b964b1d043b8db7a39d7502c068f07cd399e375f.zip | |
remove deprecated APIs missed in #30182
Diffstat (limited to 'src/libsyntax/util')
| -rw-r--r-- | src/libsyntax/util/small_vector.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libsyntax/util/small_vector.rs b/src/libsyntax/util/small_vector.rs index ee183d7f3e9..8b07b21c578 100644 --- a/src/libsyntax/util/small_vector.rs +++ b/src/libsyntax/util/small_vector.rs @@ -127,13 +127,6 @@ impl<T> SmallVector<T> { } } - /// Deprecated: use `into_iter`. - #[unstable(feature = "rustc_private", issue = "0")] - #[rustc_deprecated(since = "1.0.0", reason = "use into_iter")] - pub fn move_iter(self) -> IntoIter<T> { - self.into_iter() - } - pub fn len(&self) -> usize { match self.repr { Zero => 0, |
