about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2019-10-26 19:56:36 +0200
committerflip1995 <hello@philkrones.com>2019-10-26 19:57:01 +0200
commit1e1d45a0055eb7c67972e698d7dcd86378ce9ebe (patch)
treecf0be2b429250c9a05ab2f2a9901dd2c74813700 /src
parentb3ecd48d2e70d17aa430a7e96d78137b73e3d19f (diff)
downloadrust-1e1d45a0055eb7c67972e698d7dcd86378ce9ebe.tar.gz
rust-1e1d45a0055eb7c67972e698d7dcd86378ce9ebe.zip
Move manual_mul_add into nursery
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 48ca368f5a9..a053cf8bef0 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -961,7 +961,7 @@ pub const ALL_LINTS: [Lint; 332] = [
     },
     Lint {
         name: "manual_mul_add",
-        group: "perf",
+        group: "nursery",
         desc: "Using `a.mul_add(b, c)` for floating points has higher numerical precision than `a * b + c`",
         deprecation: None,
         module: "mul_add",