about summary refs log tree commit diff
path: root/src/libstd/unstable
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-02-01 15:57:17 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-02-02 02:59:03 +1100
commit2ed980fe253d0b7103ff0b16ce2aeecb03f09203 (patch)
tree7c4892e371519a81effee35d982f4caaf0b23453 /src/libstd/unstable
parente0c1707560d02bb5805b33cb17e8abfc339eb16b (diff)
downloadrust-2ed980fe253d0b7103ff0b16ce2aeecb03f09203.tar.gz
rust-2ed980fe253d0b7103ff0b16ce2aeecb03f09203.zip
std,extra: remove use of & support for @[].
Diffstat (limited to 'src/libstd/unstable')
-rw-r--r--src/libstd/unstable/raw.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/unstable/raw.rs b/src/libstd/unstable/raw.rs
index c568edd09d1..63208b3f2d7 100644
--- a/src/libstd/unstable/raw.rs
+++ b/src/libstd/unstable/raw.rs
@@ -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 {}