Skip to content

Commit 6002c13

Browse files
author
Jorge Aparicio
committed
Register new snapshots
1 parent de14466 commit 6002c13

File tree

4 files changed

+9
-30
lines changed

4 files changed

+9
-30
lines changed

src/librustc_typeck/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@ use syntax::print::pprust::*;
104104
use syntax::{ast, ast_map, abi};
105105
use syntax::ast_util::local_def;
106106

107-
#[cfg(stage0)]
108-
mod diagnostics;
109-
110107
mod check;
111108
mod rscope;
112109
mod astconv;

src/libstd/io/mod.rs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,6 @@ pub trait Writer {
10361036
error: IoResult<()>,
10371037
}
10381038

1039-
#[cfg(not(stage0))]
10401039
impl<'a, Sized? T: Writer> fmt::Writer for Adaptor<'a, T> {
10411040
fn write_str(&mut self, s: &str) -> fmt::Result {
10421041
match self.inner.write(s.as_bytes()) {
@@ -1049,19 +1048,6 @@ pub trait Writer {
10491048
}
10501049
}
10511050

1052-
#[cfg(stage0)]
1053-
impl<'a, T: Writer> fmt::Writer for Adaptor<'a, T> {
1054-
fn write_str(&mut self, s: &str) -> fmt::Result {
1055-
match self.inner.write(s.as_bytes()) {
1056-
Ok(()) => Ok(()),
1057-
Err(e) => {
1058-
self.error = Err(e);
1059-
Err(fmt::Error)
1060-
}
1061-
}
1062-
}
1063-
}
1064-
10651051
let mut output = Adaptor { inner: self, error: Ok(()) };
10661052
match fmt::write(&mut output, fmt) {
10671053
Ok(()) => Ok(()),
@@ -1652,16 +1638,6 @@ pub struct IncomingConnections<'a, Sized? A:'a> {
16521638
inc: &'a mut A,
16531639
}
16541640

1655-
#[cfg(stage0)]
1656-
impl<'a, T, A: Acceptor<T>> Iterator for IncomingConnections<'a, A> {
1657-
type Item = IoResult<T>;
1658-
1659-
fn next(&mut self) -> Option<IoResult<T>> {
1660-
Some(self.inc.accept())
1661-
}
1662-
}
1663-
1664-
#[cfg(not(stage0))]
16651641
impl<'a, T, Sized? A: Acceptor<T>> Iterator for IncomingConnections<'a, A> {
16661642
type Item = IoResult<T>;
16671643

src/libstd/prelude/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,5 @@
3535
//! pervasive that it would be obnoxious to import for every use, particularly
3636
//! those that define methods on primitive types.
3737
38-
#[cfg(stage0)]
39-
pub use self::v1::*;
40-
4138
#[stable]
4239
pub mod v1;

src/snapshots.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
S 2015-01-02 c894171
2+
freebsd-x86_64 ea8bcf75eada3539f5cbab51708eecf40d436b77
3+
linux-i386 646ae265721e3cbe19404aae4fea4ffa1f1d90cf
4+
linux-x86_64 85183ce0724af3dfb7616b9e81a4e5510415f351
5+
macos-i386 b3eced7fc5e78f767edb4595dfcde02dad206f3f
6+
macos-x86_64 36418bce8c18f1b49ec6b5aec2bf35ff1cd833a3
7+
winnt-i386 6c7ddf23b389be723d34ab91a9baa4a06c5f9571
8+
winnt-x86_64 d086d4019d603db09166d0609a21da8ee8fe306a
9+
110
S 2015-01-01 7d4f487
211
freebsd-x86_64 5dc87adb17bc33abc08f1bf4c092e0b5b92a6ca4
312
linux-i386 63bf82a5b540d8acbbf1e445ce48be0fa0f003fc

0 commit comments

Comments
 (0)