We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2b53b commit 45363f1Copy full SHA for 45363f1
compiler/rustc_builtin_macros/src/deriving/generic/mod.rs
@@ -695,15 +695,13 @@ impl<'a> TraitDef<'a> {
695
}
696
}));
697
698
- let mut ty_params = params
+ let ty_param_names: Vec<Symbol> = params
699
.iter()
700
.filter(|param| matches!(param.kind, ast::GenericParamKind::Type { .. }))
701
- .peekable();
702
-
703
- if ty_params.peek().is_some() {
704
- let ty_param_names: Vec<Symbol> =
705
- ty_params.map(|ty_param| ty_param.ident.name).collect();
+ .map(|ty_param| ty_param.ident.name)
+ .collect();
706
+ if !ty_param_names.is_empty() {
707
for field_ty in field_tys {
708
let field_ty_params = find_type_parameters(&field_ty, &ty_param_names, cx);
709
0 commit comments