Fix cfg(parallel_compiler) mode

Fix rebase
This commit is contained in:
Vadim Petrochenkov
2019-07-24 11:44:14 +03:00
parent 676d282dd3
commit 1a370109ec
5 changed files with 19 additions and 38 deletions

View File

@@ -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,