@@ -30,7 +30,7 @@ use crate::{cfg_select, intrinsics, mem};
30
30
/// let r = f32::RADIX;
31
31
/// ```
32
32
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
33
- #[ deprecated( since = "TBD " , note = "replaced by the `RADIX` associated constant on `f32`" ) ]
33
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `RADIX` associated constant on `f32`" ) ]
34
34
#[ rustc_diagnostic_item = "f32_legacy_const_radix" ]
35
35
pub const RADIX : u32 = f32:: RADIX ;
36
36
@@ -49,7 +49,7 @@ pub const RADIX: u32 = f32::RADIX;
49
49
/// ```
50
50
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
51
51
#[ deprecated(
52
- since = "TBD " ,
52
+ since = "1.92.0 " ,
53
53
note = "replaced by the `MANTISSA_DIGITS` associated constant on `f32`"
54
54
) ]
55
55
#[ rustc_diagnostic_item = "f32_legacy_const_mantissa_dig" ]
@@ -69,7 +69,7 @@ pub const MANTISSA_DIGITS: u32 = f32::MANTISSA_DIGITS;
69
69
/// let d = f32::DIGITS;
70
70
/// ```
71
71
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
72
- #[ deprecated( since = "TBD " , note = "replaced by the `DIGITS` associated constant on `f32`" ) ]
72
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `DIGITS` associated constant on `f32`" ) ]
73
73
#[ rustc_diagnostic_item = "f32_legacy_const_digits" ]
74
74
pub const DIGITS : u32 = f32:: DIGITS ;
75
75
@@ -91,7 +91,7 @@ pub const DIGITS: u32 = f32::DIGITS;
91
91
/// let e = f32::EPSILON;
92
92
/// ```
93
93
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
94
- #[ deprecated( since = "TBD " , note = "replaced by the `EPSILON` associated constant on `f32`" ) ]
94
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `EPSILON` associated constant on `f32`" ) ]
95
95
#[ rustc_diagnostic_item = "f32_legacy_const_epsilon" ]
96
96
pub const EPSILON : f32 = f32:: EPSILON ;
97
97
@@ -109,7 +109,7 @@ pub const EPSILON: f32 = f32::EPSILON;
109
109
/// let min = f32::MIN;
110
110
/// ```
111
111
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
112
- #[ deprecated( since = "TBD " , note = "replaced by the `MIN` associated constant on `f32`" ) ]
112
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN` associated constant on `f32`" ) ]
113
113
#[ rustc_diagnostic_item = "f32_legacy_const_min" ]
114
114
pub const MIN : f32 = f32:: MIN ;
115
115
@@ -127,7 +127,10 @@ pub const MIN: f32 = f32::MIN;
127
127
/// let min = f32::MIN_POSITIVE;
128
128
/// ```
129
129
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
130
- #[ deprecated( since = "TBD" , note = "replaced by the `MIN_POSITIVE` associated constant on `f32`" ) ]
130
+ #[ deprecated(
131
+ since = "1.92.0" ,
132
+ note = "replaced by the `MIN_POSITIVE` associated constant on `f32`"
133
+ ) ]
131
134
#[ rustc_diagnostic_item = "f32_legacy_const_min_positive" ]
132
135
pub const MIN_POSITIVE : f32 = f32:: MIN_POSITIVE ;
133
136
@@ -145,7 +148,7 @@ pub const MIN_POSITIVE: f32 = f32::MIN_POSITIVE;
145
148
/// let max = f32::MAX;
146
149
/// ```
147
150
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
148
- #[ deprecated( since = "TBD " , note = "replaced by the `MAX` associated constant on `f32`" ) ]
151
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX` associated constant on `f32`" ) ]
149
152
#[ rustc_diagnostic_item = "f32_legacy_const_max" ]
150
153
pub const MAX : f32 = f32:: MAX ;
151
154
@@ -163,7 +166,7 @@ pub const MAX: f32 = f32::MAX;
163
166
/// let min = f32::MIN_EXP;
164
167
/// ```
165
168
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
166
- #[ deprecated( since = "TBD " , note = "replaced by the `MIN_EXP` associated constant on `f32`" ) ]
169
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN_EXP` associated constant on `f32`" ) ]
167
170
#[ rustc_diagnostic_item = "f32_legacy_const_min_exp" ]
168
171
pub const MIN_EXP : i32 = f32:: MIN_EXP ;
169
172
@@ -181,7 +184,7 @@ pub const MIN_EXP: i32 = f32::MIN_EXP;
181
184
/// let max = f32::MAX_EXP;
182
185
/// ```
183
186
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
184
- #[ deprecated( since = "TBD " , note = "replaced by the `MAX_EXP` associated constant on `f32`" ) ]
187
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX_EXP` associated constant on `f32`" ) ]
185
188
#[ rustc_diagnostic_item = "f32_legacy_const_max_exp" ]
186
189
pub const MAX_EXP : i32 = f32:: MAX_EXP ;
187
190
@@ -199,7 +202,7 @@ pub const MAX_EXP: i32 = f32::MAX_EXP;
199
202
/// let min = f32::MIN_10_EXP;
200
203
/// ```
201
204
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
202
- #[ deprecated( since = "TBD " , note = "replaced by the `MIN_10_EXP` associated constant on `f32`" ) ]
205
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MIN_10_EXP` associated constant on `f32`" ) ]
203
206
#[ rustc_diagnostic_item = "f32_legacy_const_min_10_exp" ]
204
207
pub const MIN_10_EXP : i32 = f32:: MIN_10_EXP ;
205
208
@@ -217,7 +220,7 @@ pub const MIN_10_EXP: i32 = f32::MIN_10_EXP;
217
220
/// let max = f32::MAX_10_EXP;
218
221
/// ```
219
222
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
220
- #[ deprecated( since = "TBD " , note = "replaced by the `MAX_10_EXP` associated constant on `f32`" ) ]
223
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `MAX_10_EXP` associated constant on `f32`" ) ]
221
224
#[ rustc_diagnostic_item = "f32_legacy_const_max_10_exp" ]
222
225
pub const MAX_10_EXP : i32 = f32:: MAX_10_EXP ;
223
226
@@ -235,7 +238,7 @@ pub const MAX_10_EXP: i32 = f32::MAX_10_EXP;
235
238
/// let nan = f32::NAN;
236
239
/// ```
237
240
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
238
- #[ deprecated( since = "TBD " , note = "replaced by the `NAN` associated constant on `f32`" ) ]
241
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `NAN` associated constant on `f32`" ) ]
239
242
#[ rustc_diagnostic_item = "f32_legacy_const_nan" ]
240
243
pub const NAN : f32 = f32:: NAN ;
241
244
@@ -253,7 +256,7 @@ pub const NAN: f32 = f32::NAN;
253
256
/// let inf = f32::INFINITY;
254
257
/// ```
255
258
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
256
- #[ deprecated( since = "TBD " , note = "replaced by the `INFINITY` associated constant on `f32`" ) ]
259
+ #[ deprecated( since = "1.92.0 " , note = "replaced by the `INFINITY` associated constant on `f32`" ) ]
257
260
#[ rustc_diagnostic_item = "f32_legacy_const_infinity" ]
258
261
pub const INFINITY : f32 = f32:: INFINITY ;
259
262
@@ -271,7 +274,10 @@ pub const INFINITY: f32 = f32::INFINITY;
271
274
/// let ninf = f32::NEG_INFINITY;
272
275
/// ```
273
276
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
274
- #[ deprecated( since = "TBD" , note = "replaced by the `NEG_INFINITY` associated constant on `f32`" ) ]
277
+ #[ deprecated(
278
+ since = "1.92.0" ,
279
+ note = "replaced by the `NEG_INFINITY` associated constant on `f32`"
280
+ ) ]
275
281
#[ rustc_diagnostic_item = "f32_legacy_const_neg_infinity" ]
276
282
pub const NEG_INFINITY : f32 = f32:: NEG_INFINITY ;
277
283
0 commit comments