Skip to content

Commit 1cdb0f5

Browse files
authored
transformer: fix v -new-transformer vlib/strconv/atoi_test.v (#26021)
1 parent 104034f commit 1cdb0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vlib/v/gen/c/cgen.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7203,7 +7203,7 @@ fn (mut g Gen) sort_structs(typesa []&ast.TypeSymbol) []&ast.TypeSymbol {
72037203
}
72047204
}
72057205
if !skip {
7206-
dep := g.table.final_sym(sym.info.elem_type).name
7206+
dep := g.table.final_sym(sym.info.elem_type).scoped_name()
72077207
if dep in type_names {
72087208
field_deps << dep
72097209
}

0 commit comments

Comments
 (0)