File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -937,8 +937,10 @@ symbols! {
937
937
external_doc,
938
938
f,
939
939
f128,
940
+ f128_epsilon,
940
941
f128_nan,
941
942
f16,
943
+ f16_epsilon,
942
944
f16_nan,
943
945
f16c_target_feature,
944
946
f32 ,
Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ impl f128 {
171
171
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
172
172
/// [`MANTISSA_DIGITS`]: f128::MANTISSA_DIGITS
173
173
#[ unstable( feature = "f128" , issue = "116909" ) ]
174
+ #[ rustc_diagnostic_item = "f128_epsilon" ]
174
175
pub const EPSILON : f128 = 1.92592994438723585305597794258492732e-34_f128 ;
175
176
176
177
/// Smallest finite `f128` value.
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ impl f16 {
168
168
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
169
169
/// [`MANTISSA_DIGITS`]: f16::MANTISSA_DIGITS
170
170
#[ unstable( feature = "f16" , issue = "116909" ) ]
171
+ #[ rustc_diagnostic_item = "f16_epsilon" ]
171
172
pub const EPSILON : f16 = 9.7656e-4_f16 ;
172
173
173
174
/// Smallest finite `f16` value.
You can’t perform that action at this time.
0 commit comments