diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-10-11 18:37:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-11 18:37:52 +0900 |
| commit | ff903bbb718852f64e3ecdef52da2452fd7e0c79 (patch) | |
| tree | e13cda3b0e083d26d1b8a78165960218c2037864 | |
| parent | 365578445c6771bb74bfd341c8c48867164a9992 (diff) | |
| parent | 75d3a9ebd1a6758d7d613869e1c8f72e31676792 (diff) | |
| download | rust-ff903bbb718852f64e3ecdef52da2452fd7e0c79.tar.gz rust-ff903bbb718852f64e3ecdef52da2452fd7e0c79.zip | |
Rollup merge of #102258 - cjgillot:core-kappa, r=m-ou-se
Remove unused variable in float formatting.
| -rw-r--r-- | library/core/src/num/flt2dec/strategy/grisu.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/library/core/src/num/flt2dec/strategy/grisu.rs b/library/core/src/num/flt2dec/strategy/grisu.rs index a4cb51c6297..ed3e0edaff2 100644 --- a/library/core/src/num/flt2dec/strategy/grisu.rs +++ b/library/core/src/num/flt2dec/strategy/grisu.rs @@ -253,7 +253,6 @@ pub fn format_shortest_opt<'a>( let delta1frac = delta1 & ((1 << e) - 1); // render integral parts, while checking for the accuracy at each step. - let mut kappa = max_kappa as i16; let mut ten_kappa = max_ten_kappa; // 10^kappa let mut remainder = plus1int; // digits yet to be rendered loop { @@ -290,12 +289,10 @@ pub fn format_shortest_opt<'a>( // the exact number of digits is `max_kappa + 1` as `plus1 < 10^(max_kappa+1)`. if i > max_kappa as usize { debug_assert_eq!(ten_kappa, 1); - debug_assert_eq!(kappa, 0); break; } // restore invariants - kappa -= 1; ten_kappa /= 10; remainder = r; } @@ -338,7 +335,6 @@ pub fn format_shortest_opt<'a>( } // restore invariants - kappa -= 1; remainder = r; } |
