summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/float_cmp_const.stderr
blob: d8182cf855b082190869047a6c6904f27f735917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:16:5
   |
LL |     1f32 == ONE;
   |     ^^^^^^^^^^^ help: consider comparing them within some margin of error: `(1f32 - ONE).abs() < error_margin`
   |
   = note: `-D clippy::float-cmp-const` implied by `-D warnings`
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:17:5
   |
LL |     TWO == ONE;
   |     ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() < error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:18:5
   |
LL |     TWO != ONE;
   |     ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() > error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:19:5
   |
LL |     ONE + ONE == TWO;
   |     ^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE + ONE - TWO).abs() < error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:21:5
   |
LL |     x as f32 == ONE;
   |     ^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(x as f32 - ONE).abs() < error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:24:5
   |
LL |     v == ONE;
   |     ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() < error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant
  --> $DIR/float_cmp_const.rs:25:5
   |
LL |     v != ONE;
   |     ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() > error_margin`
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: strict comparison of `f32` or `f64` constant arrays
  --> $DIR/float_cmp_const.rs:57:5
   |
LL |     NON_ZERO_ARRAY == NON_ZERO_ARRAY2;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`

error: aborting due to 8 previous errors