This commit is contained in:
Andre Bogus 2015-10-15 16:02:19 +02:00
parent cf1e83b6dc
commit 657afc1157
1 changed files with 2 additions and 2 deletions

View File

@ -285,9 +285,9 @@ impl LateLintPass for TypeComplexityPass {
fn check_variant(&mut self, cx: &LateContext, var: &Variant, _: &Generics) { fn check_variant(&mut self, cx: &LateContext, var: &Variant, _: &Generics) {
// StructVariant is covered by check_struct_field // StructVariant is covered by check_struct_field
if let TupleVariantKind(ref args) = var.node.kind { if let VariantData::Tuple(ref args, _) = *var.node.data {
for arg in args { for arg in args {
check_type(cx, &arg.ty); check_type(cx, &arg.node.ty);
} }
} }
} }