whitespace cleanup

This commit is contained in:
dzaima 2023-01-31 00:02:02 +02:00
parent 74cfec9704
commit c38565ab8d
3 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ B parseFloat_c1(B t, B x) {
usz ia = IA(x);
if (RNK(x)!=1) thrM("•ParseFloat: Input must have rank 1");
if (ia==0) thrM("•ParseFloat: Input was empty");
if (ia >= (1<<20)) thrM("•ParseFloat: Input too long"); // otherwise things like
if (ia >= (1<<20)) thrM("•ParseFloat: Input too long"); // assumption by ryu_s2d_n
u8* data = c8any_ptr(x);
f64 res;
if (!ryu_s2d_n(data, ia, &res)) thrM("•ParseFloat: Malformed input");