update zig

This commit is contained in:
Mitchell Hashimoto
2024-03-13 09:14:12 -07:00
parent 13c5a70da7
commit b48d24a546
11 changed files with 18 additions and 18 deletions

View File

@@ -281,7 +281,7 @@ fn parseIntoField(
fn parsePackedStruct(comptime T: type, v: []const u8) !T {
const info = @typeInfo(T).Struct;
assert(info.layout == .Packed);
assert(info.layout == .@"packed");
var result: T = .{};