Skip to content

Commit 4a1d21a

Browse files
committed
Register new snapshots
1 parent 639759b commit 4a1d21a

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

src/liballoc/owned.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ impl<T: fmt::Show> fmt::Show for Box<T> {
107107
}
108108
}
109109

110-
#[cfg(not(stage0))]
111110
impl fmt::Show for Box<Any> {
112111
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
113112
f.pad("Box<Any>")

src/libcore/fmt/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ pub struct Formatter<'a> {
7070
/// Optionally specified precision for numeric types
7171
pub precision: Option<uint>,
7272

73-
#[allow(missing_doc)]
74-
#[cfg(stage0)]
75-
pub buf: &'a mut FormatWriter,
76-
#[cfg(not(stage0))]
7773
buf: &'a mut FormatWriter,
7874
curarg: slice::Items<'a, Argument<'a>>,
7975
args: &'a [Argument<'a>],

src/libstd/macros.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -251,19 +251,11 @@ macro_rules! format_strbuf(
251251
/// write!(&mut w, "formatted {}", "arguments");
252252
/// ```
253253
#[macro_export]
254-
#[cfg(not(stage0))]
255254
macro_rules! write(
256255
($dst:expr, $($arg:tt)*) => ({
257256
format_args_method!($dst, write_fmt, $($arg)*)
258257
})
259258
)
260-
#[cfg(stage0)]
261-
#[macro_export]
262-
macro_rules! write(
263-
($dst:expr, $($arg:tt)*) => ({
264-
format_args!(|args| { $dst.write_fmt(args) }, $($arg)*)
265-
})
266-
)
267259

268260
/// Equivalent to the `write!` macro, except that a newline is appended after
269261
/// the message is written.

src/snapshots.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
S 2014-05-16 5327218
2+
freebsd-x86_64 e91e235c808eb7e8a1e82f7e00c874de9b1df345
3+
linux-i386 3a3b7d68ed42a144fa06c9a49c63966da9adeef2
4+
linux-x86_64 212f9062080a6e6cba472d8530d086ad787bbf72
5+
macos-i386 8306ef93b626cedbc0cb45296a72b294d8e073a0
6+
macos-x86_64 3025ff751d888994431eb3cf970936cd2143f95d
7+
winnt-i386 9b271338ecc29684e7db15c402e8c90b8b152781
8+
19
S 2014-05-15 6a2b3d1
210
freebsd-x86_64 afc98b59cb819025fecdb9d145ca4463f857a477
311
linux-i386 d6f7a404412ea34db3d19814ca21fe6fa662b02f

0 commit comments

Comments
 (0)