mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
Fix excessive_precision false positive
This commit is contained in:
parent
63ceabf0cf
commit
8a77a25b8a
2 changed files with 6 additions and 3 deletions
|
@ -136,10 +136,10 @@ fn max_digits(fty: FloatTy) -> u32 {
|
|||
|
||||
/// Counts the digits excluding leading zeros
|
||||
fn count_digits(s: &str) -> usize {
|
||||
// Note that s does not contain the f32/64 suffix
|
||||
// Note that s does not contain the f32/64 suffix, and underscores have been stripped
|
||||
s.chars()
|
||||
.filter(|c| *c != '-' || *c != '.')
|
||||
.take_while(|c| *c != 'e' || *c != 'E')
|
||||
.filter(|c| *c != '-' && *c != '.')
|
||||
.take_while(|c| *c != 'e' && *c != 'E')
|
||||
.fold(0, |count, c| {
|
||||
// leading zeros
|
||||
if c == '0' && count == 0 {
|
||||
|
|
|
@ -67,4 +67,7 @@ fn main() {
|
|||
|
||||
// Inferred type
|
||||
let good_inferred: f32 = 1f32 * 1_000_000_000.;
|
||||
|
||||
// issue #2840
|
||||
let num = 0.000_000_000_01e-10f64;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue