Register new snapshots

This commit is contained in:
Jorge Aparicio 2015-01-03 07:16:22 -05:00
parent de1446680c
commit 6002c13f9b
4 changed files with 9 additions and 30 deletions

View File

@ -104,9 +104,6 @@ use syntax::print::pprust::*;
use syntax::{ast, ast_map, abi};
use syntax::ast_util::local_def;
#[cfg(stage0)]
mod diagnostics;
mod check;
mod rscope;
mod astconv;

View File

@ -1036,7 +1036,6 @@ pub trait Writer {
error: IoResult<()>,
}
#[cfg(not(stage0))]
impl<'a, Sized? T: Writer> fmt::Writer for Adaptor<'a, T> {
fn write_str(&mut self, s: &str) -> fmt::Result {
match self.inner.write(s.as_bytes()) {
@ -1049,19 +1048,6 @@ pub trait Writer {
}
}
#[cfg(stage0)]
impl<'a, T: Writer> fmt::Writer for Adaptor<'a, T> {
fn write_str(&mut self, s: &str) -> fmt::Result {
match self.inner.write(s.as_bytes()) {
Ok(()) => Ok(()),
Err(e) => {
self.error = Err(e);
Err(fmt::Error)
}
}
}
}
let mut output = Adaptor { inner: self, error: Ok(()) };
match fmt::write(&mut output, fmt) {
Ok(()) => Ok(()),
@ -1652,16 +1638,6 @@ pub struct IncomingConnections<'a, Sized? A:'a> {
inc: &'a mut A,
}
#[cfg(stage0)]
impl<'a, T, A: Acceptor<T>> Iterator for IncomingConnections<'a, A> {
type Item = IoResult<T>;
fn next(&mut self) -> Option<IoResult<T>> {
Some(self.inc.accept())
}
}
#[cfg(not(stage0))]
impl<'a, T, Sized? A: Acceptor<T>> Iterator for IncomingConnections<'a, A> {
type Item = IoResult<T>;

View File

@ -35,8 +35,5 @@
//! pervasive that it would be obnoxious to import for every use, particularly
//! those that define methods on primitive types.
#[cfg(stage0)]
pub use self::v1::*;
#[stable]
pub mod v1;

View File

@ -1,3 +1,12 @@
S 2015-01-02 c894171
freebsd-x86_64 ea8bcf75eada3539f5cbab51708eecf40d436b77
linux-i386 646ae265721e3cbe19404aae4fea4ffa1f1d90cf
linux-x86_64 85183ce0724af3dfb7616b9e81a4e5510415f351
macos-i386 b3eced7fc5e78f767edb4595dfcde02dad206f3f
macos-x86_64 36418bce8c18f1b49ec6b5aec2bf35ff1cd833a3
winnt-i386 6c7ddf23b389be723d34ab91a9baa4a06c5f9571
winnt-x86_64 d086d4019d603db09166d0609a21da8ee8fe306a
S 2015-01-01 7d4f487
freebsd-x86_64 5dc87adb17bc33abc08f1bf4c092e0b5b92a6ca4
linux-i386 63bf82a5b540d8acbbf1e445ce48be0fa0f003fc