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

v2: fix array init

This commit is contained in:
Joe Conigliaro
2020-03-04 12:50:32 +11:00
parent bac6fc6ee2
commit d501ea0afb
4 changed files with 64 additions and 79 deletions

View File

@ -239,7 +239,7 @@ pub fn f64_to_str_l(f f64) string {
m_sgn_flag := false
mut sgn := 1
mut b := [18+8]byte
mut b := [26]byte
mut d_pos := 1
mut i := 0
mut i1 := 0