rename StructField field_type to type

breaking zig commit: aac2d6b56f
This commit is contained in:
Aksel Hjerpbakk
2022-12-22 15:48:39 +01:00
parent a56d6e31a8
commit 2ef2905c3d
2 changed files with 4 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ fn reallyRefAllDecls(comptime T: type) void {
.Struct, .Union => {
reallyRefAllContainerDecls(T);
inline for (std.meta.fields(T)) |field| {
reallyRefAllDecls(field.field_type);
reallyRefAllDecls(field.type);
}
},
.Enum, .Opaque => {