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-18 15:58:07 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-18 16:34:04 -0800
commitd6e939a2df16338e9cf63ad19d1025a15069387c (patch)
tree75f43a3a575e8413a14efb4fe65a4520e54b7548 /src/libcore/array.rs
parent1506b34e0c52b098158541d2ba9e334df1ce4812 (diff)
downloadrust-d6e939a2df16338e9cf63ad19d1025a15069387c.tar.gz
rust-d6e939a2df16338e9cf63ad19d1025a15069387c.zip
Round 3 test fixes and conflicts
Diffstat (limited to 'src/libcore/array.rs')
-rw-r--r--src/libcore/array.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs
index 0c563f60c13..afb5d95c9f8 100644
--- a/src/libcore/array.rs
+++ b/src/libcore/array.rs
@@ -45,7 +45,7 @@ macro_rules! array_impls {
             #[stable(feature = "rust1", since = "1.0.0")]
             impl<T: Hash> Hash for [T; $N] {
                 fn hash<H: hash::Hasher>(&self, state: &mut H) {
-                    Hash::hash(&self[], state)
+                    Hash::hash(&self[..], state)
                 }
             }