py/formatfloat: Remove unreachable code.

The if-block that this unreachable code is in has a condition "f>=5" so
"fp_isless1(f)" will always fail.
pull/1/head
Damien George 2017-01-19 23:32:16 +11:00
parent 0883a7e72f
commit 94a587a750
1 changed files with 0 additions and 4 deletions

View File

@ -388,10 +388,6 @@ int mp_format_float(FPTYPE f, char *buf, size_t buf_size, char fmt, int prec, ch
}
*rs = '1';
}
if (fp_isless1(f) && fmt == 'f') {
// We rounded up to 1.0
prec--;
}
}
// verify that we did not overrun the input buffer so far