Register new snapshots
This commit is contained in:
parent
639759b7f4
commit
4a1d21ab7b
@ -107,7 +107,6 @@ impl<T: fmt::Show> fmt::Show for Box<T> {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(stage0))]
|
||||
impl fmt::Show for Box<Any> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
f.pad("Box<Any>")
|
||||
|
@ -70,10 +70,6 @@ pub struct Formatter<'a> {
|
||||
/// Optionally specified precision for numeric types
|
||||
pub precision: Option<uint>,
|
||||
|
||||
#[allow(missing_doc)]
|
||||
#[cfg(stage0)]
|
||||
pub buf: &'a mut FormatWriter,
|
||||
#[cfg(not(stage0))]
|
||||
buf: &'a mut FormatWriter,
|
||||
curarg: slice::Items<'a, Argument<'a>>,
|
||||
args: &'a [Argument<'a>],
|
||||
|
@ -251,19 +251,11 @@ macro_rules! format_strbuf(
|
||||
/// write!(&mut w, "formatted {}", "arguments");
|
||||
/// ```
|
||||
#[macro_export]
|
||||
#[cfg(not(stage0))]
|
||||
macro_rules! write(
|
||||
($dst:expr, $($arg:tt)*) => ({
|
||||
format_args_method!($dst, write_fmt, $($arg)*)
|
||||
})
|
||||
)
|
||||
#[cfg(stage0)]
|
||||
#[macro_export]
|
||||
macro_rules! write(
|
||||
($dst:expr, $($arg:tt)*) => ({
|
||||
format_args!(|args| { $dst.write_fmt(args) }, $($arg)*)
|
||||
})
|
||||
)
|
||||
|
||||
/// Equivalent to the `write!` macro, except that a newline is appended after
|
||||
/// the message is written.
|
||||
|
@ -1,3 +1,11 @@
|
||||
S 2014-05-16 5327218
|
||||
freebsd-x86_64 e91e235c808eb7e8a1e82f7e00c874de9b1df345
|
||||
linux-i386 3a3b7d68ed42a144fa06c9a49c63966da9adeef2
|
||||
linux-x86_64 212f9062080a6e6cba472d8530d086ad787bbf72
|
||||
macos-i386 8306ef93b626cedbc0cb45296a72b294d8e073a0
|
||||
macos-x86_64 3025ff751d888994431eb3cf970936cd2143f95d
|
||||
winnt-i386 9b271338ecc29684e7db15c402e8c90b8b152781
|
||||
|
||||
S 2014-05-15 6a2b3d1
|
||||
freebsd-x86_64 afc98b59cb819025fecdb9d145ca4463f857a477
|
||||
linux-i386 d6f7a404412ea34db3d19814ca21fe6fa662b02f
|
||||
|
Loading…
x
Reference in New Issue
Block a user