Skip to content

Commit 3d94fc9

Browse files
Rollup merge of #118981 - krtab:onelessalloc, r=compiler-errors
Remove an unneeded allocation This removes an unneeded allocation in `<&[hir::GenericParam<'_>] as NextTypeParamName>::next_type_param_name`
2 parents 5e85fec + 8142e85 commit 3d94fc9

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_trait_selection/src/traits/error_reporting

1 file changed

+1
-1
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4665,7 +4665,7 @@ pub trait NextTypeParamName {
46654665
impl NextTypeParamName for &[hir::GenericParam<'_>] {
46664666
fn next_type_param_name(&self, name: Option<&str>) -> String {
46674667
// This is the list of possible parameter names that we might suggest.
4668-
let name = name.and_then(|n| n.chars().next()).map(|c| c.to_string().to_uppercase());
4668+
let name = name.and_then(|n| n.chars().next()).map(|c| c.to_uppercase().to_string());
46694669
let name = name.as_deref();
46704670
let possible_names = [name.unwrap_or("T"), "T", "U", "V", "X", "Y", "Z", "A", "B", "C"];
46714671
let used_names = self

0 commit comments

Comments
 (0)