mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-02-06 09:49:52 +08:00
type usage fix.
This commit is contained in:
parent
fcdb5869d4
commit
3d69a9593e
@ -629,7 +629,7 @@ parse_int_string(UC const *p, UC const *pend, T &value,
|
|||||||
}
|
}
|
||||||
if (nd > 3) {
|
if (nd > 3) {
|
||||||
const UC *q = p + nd;
|
const UC *q = p + nd;
|
||||||
am_bits_t rem = len - nd;
|
am_digits rem = len - nd;
|
||||||
while (rem) {
|
while (rem) {
|
||||||
if (*q < UC('0') || *q > UC('9'))
|
if (*q < UC('0') || *q > UC('9'))
|
||||||
break;
|
break;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user