From 3316b1eb7c3eb520896af489dd45c4d17190d0a8 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 6 Jun 2014 10:27:49 -0700 Subject: rustc: Remove ~[T] from the language The following features have been removed * box [a, b, c] * ~[a, b, c] * box [a, ..N] * ~[a, ..N] * ~[T] (as a type) * deprecated_owned_vector lint All users of ~[T] should move to using Vec instead. --- src/libstd/path/mod.rs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/libstd/path/mod.rs') diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index a101f043212..7d15893af24 100644 --- a/src/libstd/path/mod.rs +++ b/src/libstd/path/mod.rs @@ -63,8 +63,6 @@ println!("path exists: {}", path.exists()); */ -#![deny(deprecated_owned_vector)] - use collections::Collection; use c_str::CString; use clone::Clone; @@ -527,13 +525,6 @@ impl<'a> BytesContainer for &'a [u8] { } } -impl BytesContainer for ~[u8] { - #[inline] - fn container_as_bytes<'a>(&'a self) -> &'a [u8] { - self.as_slice() - } -} - impl BytesContainer for Vec { #[inline] fn container_as_bytes<'a>(&'a self) -> &'a [u8] { -- cgit 1.4.1-3-g733a5