Skip to content

Commit 41ccd44

Browse files
committed
Use exhaustive matching
1 parent ef68506 commit 41ccd44

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/librustc_privacy/lib.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,10 @@ impl<'a, 'tcx> SanePrivacyVisitor<'a, 'tcx> {
10941094
check_inherited(item.span, item.vis,
10951095
"place qualifiers on individual functions instead");
10961096
}
1097-
_ => {}
1097+
hir::ItemStruct(..) | hir::ItemEnum(..) | hir::ItemTrait(..) |
1098+
hir::ItemConst(..) | hir::ItemStatic(..) | hir::ItemFn(..) |
1099+
hir::ItemMod(..) | hir::ItemExternCrate(..) |
1100+
hir::ItemUse(..) | hir::ItemTy(..) => {}
10981101
}
10991102
}
11001103

@@ -1125,7 +1128,10 @@ impl<'a, 'tcx> SanePrivacyVisitor<'a, 'tcx> {
11251128
check_inherited(f.span, f.node.kind.visibility());
11261129
}
11271130
}
1128-
_ => {}
1131+
hir::ItemDefaultImpl(..) | hir::ItemEnum(..) | hir::ItemTrait(..) |
1132+
hir::ItemConst(..) | hir::ItemStatic(..) | hir::ItemFn(..) |
1133+
hir::ItemMod(..) | hir::ItemExternCrate(..) |
1134+
hir::ItemUse(..) | hir::ItemTy(..) => {}
11291135
}
11301136
}
11311137
}

0 commit comments

Comments
 (0)