all: update to std.builtin.Type.{Pointer,Array,StructField} field renames

This commit is contained in:
mlugg
2025-01-15 17:34:12 +00:00
parent 89a9cabafd
commit 9804cc8bc6
26 changed files with 117 additions and 153 deletions

View File

@@ -1134,7 +1134,7 @@ const Local = struct {
for (&new_fields, elem_fields) |*new_field, elem_field| new_field.* = .{
.name = elem_field.name,
.type = *[len]elem_field.type,
.default_value = null,
.default_value_ptr = null,
.is_comptime = false,
.alignment = 0,
};
@@ -1162,9 +1162,9 @@ const Local = struct {
.address_space = .generic,
.child = elem_field.type,
.is_allowzero = false,
.sentinel = null,
.sentinel_ptr = null,
} }),
.default_value = null,
.default_value_ptr = null,
.is_comptime = false,
.alignment = 0,
};