Skip to content

Commit 45363f1

Browse files
committed
Directly collect into ty_param_names instead of peeking to see if empty
1 parent bd2b53b commit 45363f1

File tree

1 file changed

+4
-6
lines changed
  • compiler/rustc_builtin_macros/src/deriving/generic

1 file changed

+4
-6
lines changed

compiler/rustc_builtin_macros/src/deriving/generic/mod.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -695,15 +695,13 @@ impl<'a> TraitDef<'a> {
695695
}
696696
}));
697697

698-
let mut ty_params = params
698+
let ty_param_names: Vec<Symbol> = params
699699
.iter()
700700
.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();
701+
.map(|ty_param| ty_param.ident.name)
702+
.collect();
706703

704+
if !ty_param_names.is_empty() {
707705
for field_ty in field_tys {
708706
let field_ty_params = find_type_parameters(&field_ty, &ty_param_names, cx);
709707

0 commit comments

Comments
 (0)