about summary refs log tree commit diff
path: root/src/libcore/array.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-19 18:35:52 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-20 22:17:17 -0800
commit6686f7aa471f162697d08a78ad4d04d3c0e9612c (patch)
tree038bc233524ca60ad55a6303c8601170a8a1039b /src/libcore/array.rs
parent522d09dfecbeca1595f25ac58c6d0178bbd21d7d (diff)
downloadrust-6686f7aa471f162697d08a78ad4d04d3c0e9612c.tar.gz
rust-6686f7aa471f162697d08a78ad4d04d3c0e9612c.zip
Register new snapshots
Diffstat (limited to 'src/libcore/array.rs')
-rw-r--r--src/libcore/array.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs
index afb5d95c9f8..e8f6e31756d 100644
--- a/src/libcore/array.rs
+++ b/src/libcore/array.rs
@@ -35,13 +35,6 @@ macro_rules! array_impls {
                 }
             }
 
-            #[cfg(stage0)]
-            impl<S: hash::Writer + hash::Hasher, T: Hash<S>> Hash<S> for [T; $N] {
-                fn hash(&self, state: &mut S) {
-                    Hash::hash(&self[..], state)
-                }
-            }
-            #[cfg(not(stage0))]
             #[stable(feature = "rust1", since = "1.0.0")]
             impl<T: Hash> Hash for [T; $N] {
                 fn hash<H: hash::Hasher>(&self, state: &mut H) {