mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: fix print(struct); use automatic referencing
This commit is contained in:
@ -365,7 +365,7 @@ fn (p mut Parser) struct_init(typ_ string) string {
|
||||
t = p.table.find_type(t.name)
|
||||
typ = t.name
|
||||
}
|
||||
if p.gen_struct_init(typ, &t) {
|
||||
if p.gen_struct_init(typ, t) {
|
||||
return typ
|
||||
}
|
||||
ptr := typ.contains('*')
|
||||
|
Reference in New Issue
Block a user