mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
table: fix #1219
This commit is contained in:
parent
6f99876b6e
commit
92fbe56276
2 changed files with 10 additions and 0 deletions
|
@ -548,9 +548,11 @@ fn type_default(typ string) string {
|
|||
case 'i8': return '0'
|
||||
case 'i16': return '0'
|
||||
case 'i32': return '0'
|
||||
case 'i64': return '0'
|
||||
case 'u8': return '0'
|
||||
case 'u16': return '0'
|
||||
case 'u32': return '0'
|
||||
case 'u64': return '0'
|
||||
case 'byte': return '0'
|
||||
case 'int': return '0'
|
||||
case 'rune': return '0'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue