mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: fix init_fn gg.FNCb = voidptr(0)
when vfmt-ing gg.v
This commit is contained in:
parent
55536bb364
commit
5c4ba3474b
@ -592,7 +592,7 @@ pub fn (mut f Fmt) struct_decl(node ast.StructDecl) {
|
||||
if comments_len + field.name.len > max {
|
||||
max = comments_len + field.name.len
|
||||
}
|
||||
ft := f.table.type_to_str(field.typ)
|
||||
ft := f.no_cur_mod(f.table.type_to_str(field.typ))
|
||||
field_types << ft
|
||||
if ft.len > max_type {
|
||||
max_type = ft.len
|
||||
|
Loading…
x
Reference in New Issue
Block a user