We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8817c6a commit 0c1fc32Copy full SHA for 0c1fc32
lexical-parse-float/src/slow.rs
@@ -295,19 +295,6 @@ macro_rules! add_temporary {
295
$result.data.add_small($value).unwrap();
296
};
297
298
- // # Safety
299
- //
300
- // Safe is `counter <= step`, or smaller than the table size.
301
- ($format:ident, $result:ident, $counter:ident, $value:ident) => {
302
- if $counter != 0 {
303
- // SAFETY: safe, since `counter <= step`, or smaller than the table size.
304
- let small_power = unsafe { f64::int_pow_fast_path($counter, $format.radix()) };
305
- add_temporary!(@mul $result, small_power as Limb, $value);
306
- $counter = 0;
307
- $value = 0;
308
- }
309
- };
310
-
311
// Add a temporary where we won't read the counter results internally.
312
//
313
// # Safety
0 commit comments