File tree 4 files changed +8
-13
lines changed
4 files changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ impl<T: fmt::Show> fmt::Show for Box<T> {
107
107
}
108
108
}
109
109
110
- #[ cfg( not( stage0) ) ]
111
110
impl fmt:: Show for Box < Any > {
112
111
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
113
112
f. pad ( "Box<Any>" )
Original file line number Diff line number Diff line change @@ -70,10 +70,6 @@ pub struct Formatter<'a> {
70
70
/// Optionally specified precision for numeric types
71
71
pub precision : Option < uint > ,
72
72
73
- #[ allow( missing_doc) ]
74
- #[ cfg( stage0) ]
75
- pub buf : & ' a mut FormatWriter ,
76
- #[ cfg( not( stage0) ) ]
77
73
buf : & ' a mut FormatWriter ,
78
74
curarg : slice:: Items < ' a , Argument < ' a > > ,
79
75
args : & ' a [ Argument < ' a > ] ,
Original file line number Diff line number Diff line change @@ -251,19 +251,11 @@ macro_rules! format_strbuf(
251
251
/// write!(&mut w, "formatted {}", "arguments");
252
252
/// ```
253
253
#[ macro_export]
254
- #[ cfg( not( stage0) ) ]
255
254
macro_rules! write(
256
255
( $dst: expr, $( $arg: tt) * ) => ( {
257
256
format_args_method!( $dst, write_fmt, $( $arg) * )
258
257
} )
259
258
)
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
- )
267
259
268
260
/// Equivalent to the `write!` macro, except that a newline is appended after
269
261
/// the message is written.
Original file line number Diff line number Diff line change
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
+
1
9
S 2014-05-15 6a2b3d1
2
10
freebsd-x86_64 afc98b59cb819025fecdb9d145ca4463f857a477
3
11
linux-i386 d6f7a404412ea34db3d19814ca21fe6fa662b02f
You can’t perform that action at this time.
0 commit comments