diff options
| author | Krishna Sai Veera Reddy <veerareddy@email.arizona.edu> | 2020-01-07 15:53:19 -0800 |
|---|---|---|
| committer | Krishna Sai Veera Reddy <veerareddy@email.arizona.edu> | 2020-01-07 15:53:19 -0800 |
| commit | b793cf09f2dfa9d96e4af9420e041b88d961ef56 (patch) | |
| tree | 06413097c2f409b265d22c7b31b18b108a6ca782 /src | |
| parent | c09206899656f5730f8007dbc86385122c34a9ca (diff) | |
| download | rust-b793cf09f2dfa9d96e4af9420e041b88d961ef56.tar.gz rust-b793cf09f2dfa9d96e4af9420e041b88d961ef56.zip | |
Move `transmute_float_to_int` lint to `complexity`
`transmute_float_to_int` lint was accidentally added to nursery so moving it to the complexity group.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lintlist/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs index 1086f5e48f9..f237809d920 100644 --- a/src/lintlist/mod.rs +++ b/src/lintlist/mod.rs @@ -1997,7 +1997,7 @@ pub const ALL_LINTS: [Lint; 345] = [ }, Lint { name: "transmute_float_to_int", - group: "nursery", + group: "complexity", desc: "transmutes from a float to an integer", deprecation: None, module: "transmute", |
