std: Remove format_strbuf!()

This was only ever a transitionary macro.
This commit is contained in:
Alex Crichton
2014-05-27 20:44:58 -07:00
parent 24b1ce1daf
commit 42aed6bde2
104 changed files with 754 additions and 931 deletions

View File

@@ -783,6 +783,6 @@ mod tests {
#[test]
fn test_show() {
let c = Ascii { chr: 't' as u8 };
assert_eq!(format_strbuf!("{}", c), "t".to_string());
assert_eq!(format!("{}", c), "t".to_string());
}
}