about summary refs log tree commit diff
path: root/clippy_lints/src/declared_lints.rs
diff options
context:
space:
mode:
authory21 <30553356+y21@users.noreply.github.com>2023-12-18 23:44:42 +0100
committery21 <30553356+y21@users.noreply.github.com>2023-12-27 14:16:35 +0100
commit08d8ca9edd7a83f15a27012391fc9760ed30e408 (patch)
treef3bc64629706ada1780ad95e8b703239d6a1e992 /clippy_lints/src/declared_lints.rs
parentdd857f82074646c67f820c099564522a61c6f4a4 (diff)
downloadrust-08d8ca9edd7a83f15a27012391fc9760ed30e408.tar.gz
rust-08d8ca9edd7a83f15a27012391fc9760ed30e408.zip
new lint: `eager_int_transmute`
Diffstat (limited to 'clippy_lints/src/declared_lints.rs')
-rw-r--r--clippy_lints/src/declared_lints.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/clippy_lints/src/declared_lints.rs b/clippy_lints/src/declared_lints.rs
index 38fda36c58a..fc5b8865495 100644
--- a/clippy_lints/src/declared_lints.rs
+++ b/clippy_lints/src/declared_lints.rs
@@ -651,6 +651,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
     crate::trait_bounds::TRAIT_DUPLICATION_IN_BOUNDS_INFO,
     crate::trait_bounds::TYPE_REPETITION_IN_BOUNDS_INFO,
     crate::transmute::CROSSPOINTER_TRANSMUTE_INFO,
+    crate::transmute::EAGER_TRANSMUTE_INFO,
     crate::transmute::TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS_INFO,
     crate::transmute::TRANSMUTE_BYTES_TO_STR_INFO,
     crate::transmute::TRANSMUTE_FLOAT_TO_INT_INFO,