Skip to content

Commit 92ecfc1

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 167879 b: refs/heads/master c: 6002c13 h: refs/heads/master i: 167877: 78b6876 167875: 3fbe9a1 167871: 7d6b6c4 v: v3
1 parent 465fd16 commit 92ecfc1

File tree

5 files changed

+10
-31
lines changed

5 files changed

+10
-31
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: de1446680cab4102cef9d0e133f1b835574926eb
2+
refs/heads/master: 6002c13f9bbf2957861a66737df9c9599dcee4be
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c89417130f042c58adc60012e7cddc4ef70b70b9
55
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb

trunk/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;

trunk/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

trunk/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;

trunk/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)