mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
53 lines
2.2 KiB
Text
53 lines
2.2 KiB
Text
error: conversion to radians can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:10:13
|
|
|
|
|
LL | let _ = degrees as f64 * std::f64::consts::PI / 180.0;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(degrees as f64).to_radians()`
|
|
|
|
|
= note: `-D clippy::suboptimal-flops` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::suboptimal_flops)]`
|
|
|
|
error: conversion to degrees can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:11:13
|
|
|
|
|
LL | let _ = degrees as f64 * 180.0 / std::f64::consts::PI;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(degrees as f64).to_degrees()`
|
|
|
|
error: conversion to degrees can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:16:13
|
|
|
|
|
LL | let _ = x * 180f32 / std::f32::consts::PI;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `x.to_degrees()`
|
|
|
|
error: conversion to degrees can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:17:13
|
|
|
|
|
LL | let _ = 90. * 180f64 / std::f64::consts::PI;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `90.0_f64.to_degrees()`
|
|
|
|
error: conversion to degrees can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:18:13
|
|
|
|
|
LL | let _ = 90.5 * 180f64 / std::f64::consts::PI;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `90.5_f64.to_degrees()`
|
|
|
|
error: conversion to radians can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:19:13
|
|
|
|
|
LL | let _ = x * std::f32::consts::PI / 180f32;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `x.to_radians()`
|
|
|
|
error: conversion to radians can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:20:13
|
|
|
|
|
LL | let _ = 90. * std::f32::consts::PI / 180f32;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `90.0_f64.to_radians()`
|
|
|
|
error: conversion to radians can be done more accurately
|
|
--> tests/ui/floating_point_rad.rs:21:13
|
|
|
|
|
LL | let _ = 90.5 * std::f32::consts::PI / 180f32;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `90.5_f64.to_radians()`
|
|
|
|
error: aborting due to 8 previous errors
|
|
|