about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel E. Moelius III <sam@moeli.us>2021-02-17 21:51:21 -0500
committerSamuel E. Moelius III <sam@moeli.us>2021-02-23 18:50:30 -0500
commit50e3ef9eb5f5f557835b11bd9255892493498ce6 (patch)
tree601806cd0430f7a5200edc6c820d46da259f19ad
parent2c26c0f621ec0c94ae17c09191de2ed802a2fa93 (diff)
downloadrust-50e3ef9eb5f5f557835b11bd9255892493498ce6.tar.gz
rust-50e3ef9eb5f5f557835b11bd9255892493498ce6.zip
Remove file accidentally re-added during rebase
-rw-r--r--clippy_utils/src/constants.rs13
1 files changed, 0 insertions, 13 deletions
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",
-];