Skip to content

Commit 8142e85

Browse files
committedDec 15, 2023
Remove an unneeded allocation
1 parent 96df494 commit 8142e85

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)