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

parser: remove ++/-- exception for some modules (#9895)

This commit is contained in:
Enzo
2021-04-27 00:41:42 +02:00
committed by GitHub
parent 3877522ee3
commit 4eb8072882
10 changed files with 116 additions and 58 deletions

View File

@ -114,7 +114,8 @@ pub fn (d Dec32) get_string_32(neg bool, i_n_digit int, i_pad_digit int) string
}
for fw_zeros > 0 {
buf[i++] = `0`
buf[i] = `0`
i++
fw_zeros--
}