From 50e3ef9eb5f5f557835b11bd9255892493498ce6 Mon Sep 17 00:00:00 2001 From: "Samuel E. Moelius III" Date: Wed, 17 Feb 2021 21:51:21 -0500 Subject: [PATCH] Remove file accidentally re-added during rebase --- clippy_utils/src/constants.rs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 clippy_utils/src/constants.rs diff --git a/clippy_utils/src/constants.rs b/clippy_utils/src/constants.rs deleted file mode 100644 index 522932f054d..00000000000 --- a/clippy_utils/src/constants.rs +++ /dev/null @@ -1,13 +0,0 @@ -//! This module contains some useful constants. - -#![deny(clippy::missing_docs_in_private_items)] - -/// List of the built-in types names. -/// -/// See also [the reference][reference-types] for a list of such types. -/// -/// [reference-types]: https://doc.rust-lang.org/reference/types.html -pub const BUILTIN_TYPES: &[&str] = &[ - "i8", "u8", "i16", "u16", "i32", "u32", "i64", "u64", "i128", "u128", "isize", "usize", "f32", "f64", "bool", - "str", "char", -];