Skip to content

Commit f1b97ee

Browse files
committed
Auto merge of #77997 - fusion-engineering-forks:to-string-no-shrink, r=joshtriplett
Remove shrink_to_fit from default ToString::to_string implementation. As suggested by `@scottmcm` on Zulip. shrink_to_fit() seems like the wrong thing to do here in most use cases of to_string(). Would be intereseting to see if it makes any difference in a timer run. r? `@joshtriplett`
2 parents e3051d8 + 0b06288 commit f1b97ee

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/alloc/src/string.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2200,7 +2200,6 @@ impl<T: fmt::Display + ?Sized> ToString for T {
22002200
let mut buf = String::new();
22012201
buf.write_fmt(format_args!("{}", self))
22022202
.expect("a Display implementation returned an error unexpectedly");
2203-
buf.shrink_to_fit();
22042203
buf
22052204
}
22062205
}

0 commit comments

Comments
 (0)