Update bootstrap compiler

This commit updates the bootstrap compiler and clears out a number
of #[cfg(stage0)] annotations and related business
This commit is contained in:
Alex Crichton
2017-08-25 08:39:02 -07:00
parent 97b01abf3d
commit 2972687d10
13 changed files with 5 additions and 196 deletions

View File

@@ -123,14 +123,6 @@ macro_rules! array_impls {
}
}
#[stable(feature = "rust1", since = "1.0.0")]
#[cfg(stage0)]
impl<T:Copy> Clone for [T; $N] {
fn clone(&self) -> [T; $N] {
*self
}
}
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: Hash> Hash for [T; $N] {
fn hash<H: hash::Hasher>(&self, state: &mut H) {