This commit is contained in:
Manish Goregaokar 2018-02-23 08:59:42 -08:00
parent ce47e529d2
commit f69fcc08d2
1 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ impl EarlyLintPass for EnumVariantNames {
); );
} }
} }
if item.vis == Visibility::Public { if item.vis.node == VisibilityKind::Public {
let matching = partial_match(mod_camel, &item_camel); let matching = partial_match(mod_camel, &item_camel);
let rmatching = partial_rmatch(mod_camel, &item_camel); let rmatching = partial_rmatch(mod_camel, &item_camel);
let nchars = mod_camel.chars().count(); let nchars = mod_camel.chars().count();
@ -284,8 +284,8 @@ impl EarlyLintPass for EnumVariantNames {
} }
} }
if let ItemKind::Enum(ref def, _) = item.node { if let ItemKind::Enum(ref def, _) = item.node {
let lint = match item.vis { let lint = match item.vis.node {
Visibility::Public => PUB_ENUM_VARIANT_NAMES, VisibilityKind::Public => PUB_ENUM_VARIANT_NAMES,
_ => ENUM_VARIANT_NAMES, _ => ENUM_VARIANT_NAMES,
}; };
check_variant(cx, self.threshold, def, &item_name, item_name_chars, item.span, lint); check_variant(cx, self.threshold, def, &item_name, item_name_chars, item.span, lint);