about summary refs log tree commit diff
path: root/src/libcore/array.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-07-24 11:44:14 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-07-28 18:47:03 +0300
commit1a370109ec176fa33a9cac2fe143b43c56ebcfd9 (patch)
tree9b5bf1b2ca690e2ffe8b24ecfebc8f895b4a25fb /src/libcore/array.rs
parent676d282dd3cd2dedba651e98c9a41af42983f08b (diff)
downloadrust-1a370109ec176fa33a9cac2fe143b43c56ebcfd9.tar.gz
rust-1a370109ec176fa33a9cac2fe143b43c56ebcfd9.zip
Fix `cfg(parallel_compiler)` mode
Fix rebase
Diffstat (limited to 'src/libcore/array.rs')
-rw-r--r--src/libcore/array.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs
index 6023bc21e74..517893a1967 100644
--- a/src/libcore/array.rs
+++ b/src/libcore/array.rs
@@ -217,7 +217,7 @@ where
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
-impl<'a, 'b, A, B, const N: usize> PartialEq<[B; N]> for [A; N]
+impl<A, B, const N: usize> PartialEq<[B; N]> for [A; N]
 where
     A: PartialEq<B>,
     [A; N]: LengthAtMost32,
@@ -234,7 +234,7 @@ where
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
-impl<'a, 'b, A, B, const N: usize> PartialEq<[B]> for [A; N]
+impl<A, B, const N: usize> PartialEq<[B]> for [A; N]
 where
     A: PartialEq<B>,
     [A; N]: LengthAtMost32,