Skip to content

Commit f66115d

Browse files
committed
Use PrimTy in builtin type shadow lint
1 parent fba747a commit f66115d

File tree

3 files changed

+4
-18
lines changed

3 files changed

+4
-18
lines changed

src/tools/clippy/clippy_lints/src/misc_early.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
use crate::utils::{constants, snippet_opt, span_lint, span_lint_and_help, span_lint_and_sugg, span_lint_and_then};
1+
use crate::utils::{snippet_opt, span_lint, span_lint_and_help, span_lint_and_sugg, span_lint_and_then};
22
use rustc_ast::ast::{
33
BindingMode, Expr, ExprKind, GenericParamKind, Generics, Lit, LitFloatType, LitIntType, LitKind, Mutability,
44
NodeId, Pat, PatKind, UnOp,
55
};
66
use rustc_ast::visit::FnKind;
77
use rustc_data_structures::fx::FxHashMap;
88
use rustc_errors::Applicability;
9+
use rustc_hir::PrimTy;
910
use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};
1011
use rustc_middle::lint::in_external_macro;
1112
use rustc_session::{declare_lint_pass, declare_tool_lint};
@@ -264,13 +265,12 @@ impl EarlyLintPass for MiscEarlyLints {
264265
fn check_generics(&mut self, cx: &EarlyContext<'_>, gen: &Generics) {
265266
for param in &gen.params {
266267
if let GenericParamKind::Type { .. } = param.kind {
267-
let name = param.ident.as_str();
268-
if constants::BUILTIN_TYPES.contains(&&*name) {
268+
if let Some(prim_ty) = PrimTy::from_name(param.ident.name) {
269269
span_lint(
270270
cx,
271271
BUILTIN_TYPE_SHADOW,
272272
param.ident.span,
273-
&format!("this generic shadows the built-in type `{}`", name),
273+
&format!("this generic shadows the built-in type `{}`", prim_ty.name()),
274274
);
275275
}
276276
}

src/tools/clippy/clippy_lints/src/utils/constants.rs

-13
This file was deleted.

src/tools/clippy/clippy_lints/src/utils/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pub mod author;
88
pub mod camel_case;
99
pub mod comparisons;
1010
pub mod conf;
11-
pub mod constants;
1211
mod diagnostics;
1312
pub mod eager_or_lazy;
1413
pub mod higher;

0 commit comments

Comments
 (0)