std,extra: remove use of & support for @[].

This commit is contained in:
Huon Wilson
2014-02-01 15:57:17 +11:00
parent e0c1707560
commit 2ed980fe25
14 changed files with 2 additions and 566 deletions

View File

@@ -56,7 +56,6 @@ pub trait Repr<T> {
impl<'a, T> Repr<Slice<T>> for &'a [T] {}
impl<'a> Repr<Slice<u8>> for &'a str {}
impl<T> Repr<*Box<T>> for @T {}
impl<T> Repr<*Box<Vec<T>>> for @[T] {}
impl<T> Repr<*Vec<T>> for ~[T] {}
impl Repr<*String> for ~str {}