Skip to content

Commit 3d69a95

Browse files
committed
type usage fix.
1 parent fcdb586 commit 3d69a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fast_float/ascii_number.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ parse_int_string(UC const *p, UC const *pend, T &value,
629629
}
630630
if (nd > 3) {
631631
const UC *q = p + nd;
632-
am_bits_t rem = len - nd;
632+
am_digits rem = len - nd;
633633
while (rem) {
634634
if (*q < UC('0') || *q > UC('9'))
635635
break;

0 commit comments

Comments
 (0)