2022-06-04 06:34:07 -05:00
|
|
|
error: used the `ceil` method with a whole number float
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/unused_rounding.rs:6:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = 1f32.ceil();
|
|
|
|
| ^^^^^^^^^^^ help: remove the `ceil` method call: `1f32`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unused-rounding` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unused_rounding)]`
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
error: used the `floor` method with a whole number float
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/unused_rounding.rs:7:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = 1.0f64.floor();
|
|
|
|
| ^^^^^^^^^^^^^^ help: remove the `floor` method call: `1.0f64`
|
|
|
|
|
|
|
|
error: used the `round` method with a whole number float
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/unused_rounding.rs:8:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = 1.00f32.round();
|
|
|
|
| ^^^^^^^^^^^^^^^ help: remove the `round` method call: `1.00f32`
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
error: used the `round` method with a whole number float
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/unused_rounding.rs:14:13
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = 3.0_f32.round();
|
|
|
|
| ^^^^^^^^^^^^^^^ help: remove the `round` method call: `3.0_f32`
|
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
error: used the `round` method with a whole number float
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/unused_rounding.rs:16:13
|
2022-12-01 11:29:38 -06:00
|
|
|
|
|
|
|
|
LL | let _ = 3_3.0_0_f32.round();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: remove the `round` method call: `3_3.0_0_f32`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2022-06-04 06:34:07 -05:00
|
|
|
|