Revert "cgen: fix empty struct init (#9769)"

This reverts commit 0cc04850d7.
pull/9793/head
Delyan Angelov 2021-04-17 19:19:25 +03:00
parent b63eba31dd
commit 5817aa47d8
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 5 deletions

View File

@ -5122,12 +5122,9 @@ fn (mut g Gen) struct_init(struct_init ast.StructInit) {
}
// The rest of the fields are zeroed.
// `inited_fields` is a list of fields that have been init'ed, they are skipped
mut nr_fields := 1
// mut nr_fields := 0
if sym.kind == .struct_ {
info := sym.info as ast.Struct
$if !msvc {
nr_fields = info.fields.len
}
if info.is_union && struct_init.fields.len > 1 {
verror('union must not have more than 1 initializer')
}
@ -5222,7 +5219,7 @@ fn (mut g Gen) struct_init(struct_init ast.StructInit) {
g.indent--
}
if !initialized && nr_fields > 0 {
if !initialized {
g.write('0')
}