1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

strconv: fix compilation

This commit is contained in:
Alexander Medvednikov 2020-04-06 14:53:28 +02:00
parent 35fbac8d56
commit 87c00a61da

View File

@ -29,7 +29,7 @@ const(
union Float64u { union Float64u {
mut: mut:
f f64 f f64
u u64 = u64(0) u u64
} }
// atof_quick return a f64 number from a string in a quick way // atof_quick return a f64 number from a string in a quick way