diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-27 20:44:58 -0700 | 
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-28 08:35:41 -0700 | 
| commit | 42aed6bde2fb05a262e21334656cdf91f51744dd (patch) | |
| tree | 0b7c43f70001fe714a13f95df7e2807a8fdfb85b /src/libstd/macros.rs | |
| parent | 24b1ce1daf9dbf66d04116d0549a48a7610bc614 (diff) | |
| download | rust-42aed6bde2fb05a262e21334656cdf91f51744dd.tar.gz rust-42aed6bde2fb05a262e21334656cdf91f51744dd.zip | |
std: Remove format_strbuf!()
This was only ever a transitionary macro.
Diffstat (limited to 'src/libstd/macros.rs')
| -rw-r--r-- | src/libstd/macros.rs | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 28b4552fd4c..0b9fc250636 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -229,14 +229,6 @@ macro_rules! format( ) ) -/// Temporary transitionary thing. -#[macro_export] -macro_rules! format_strbuf( - ($($arg:tt)*) => ( - format_args!(::std::fmt::format_strbuf, $($arg)*) - ) -) - /// Use the `format!` syntax to write data into a buffer of type `&mut Writer`. /// See `std::fmt` for more information. /// | 
