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

@ -16,7 +16,7 @@ pub fn main() {
while i > 0 {
println!("{}", a.len());
assert_eq!(a.len(), expected_len);
a = format_strbuf!("{}{}", a, a);
a = format!("{}{}", a, a);
i -= 1;
expected_len *= 2u;
}