diff options
| author | bors <bors@rust-lang.org> | 2024-03-24 00:20:28 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-24 00:20:28 +0000 |
| commit | 95c62ffae9bbce793f68a6f1473e3fc24af19bdd (patch) | |
| tree | c83a76e194043e9b077ac8724f97e0989daafea0 /clippy_lints/src/declared_lints.rs | |
| parent | 12f7c17ae0e9137a4b470d17c5ed204458f4bab2 (diff) | |
| parent | ee2558223f51b894475dcd1458b21f7ea393508a (diff) | |
| download | rust-95c62ffae9bbce793f68a6f1473e3fc24af19bdd.tar.gz rust-95c62ffae9bbce793f68a6f1473e3fc24af19bdd.zip | |
Auto merge of #12239 - GuillaumeGomez:missing_transmute_annotation, r=y21
Add `missing_transmute_annotations` lint Fixes https://github.com/rust-lang/rust-clippy/issues/715. r? `@blyxyas` changelog: Add `missing_transmute_annotations` lint
Diffstat (limited to 'clippy_lints/src/declared_lints.rs')
| -rw-r--r-- | clippy_lints/src/declared_lints.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clippy_lints/src/declared_lints.rs b/clippy_lints/src/declared_lints.rs index c8e148598a2..eba048ad90b 100644 --- a/clippy_lints/src/declared_lints.rs +++ b/clippy_lints/src/declared_lints.rs @@ -678,6 +678,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[ crate::trait_bounds::TYPE_REPETITION_IN_BOUNDS_INFO, crate::transmute::CROSSPOINTER_TRANSMUTE_INFO, crate::transmute::EAGER_TRANSMUTE_INFO, + crate::transmute::MISSING_TRANSMUTE_ANNOTATIONS_INFO, crate::transmute::TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS_INFO, crate::transmute::TRANSMUTE_BYTES_TO_STR_INFO, crate::transmute::TRANSMUTE_FLOAT_TO_INT_INFO, |
