early return on empty parameters/where clause

This commit is contained in:
Christoph Walcher 2020-08-03 12:32:23 +02:00
parent 2b7fde6a4b
commit e521c67e5f
No known key found for this signature in database
GPG key ID: A193164A4D05EE44

View file

@ -148,7 +148,7 @@ impl TraitBounds {
}
fn check_trait_bound_duplication(cx: &LateContext<'_>, gen: &'_ Generics<'_>) {
if in_macro(gen.span) {
if in_macro(gen.span) || gen.params.is_empty() || gen.where_clause.predicates.is_empty() {
return;
}