authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-05-21 12:52:50 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-05-21 12:52:50 -07:00
log8ae0201fe54ad617aa5f2eb055bee16dce98350e
tree36755a5d2401ed90fc9ef14107f568bfefd79892
parentceb64573489955f0fea6df00439c94c7bb715cbc

update to Zig 0.14


1 files changed, 2 insertions(+), 2 deletions(-)

src/lib.zig+2-2
......@@ -60,7 +60,7 @@ fn DerivedPropertyEnum(comptime prop: []const u8) type {
6060 }};
6161 }
6262 }
63 return @Type(.{ .Enum = .{
63 return @Type(.{ .@"enum" = .{
6464 .tag_type = std.math.IntFittingRange(0, fields.len - 1),
6565 .fields = fields,
6666 .decls = &.{},
......@@ -79,7 +79,7 @@ fn DerivedPropertyLongEnum(comptime prop: []const u8) type {
7979 .value = fields.len,
8080 }};
8181 }
82 return @Type(.{ .Enum = .{
82 return @Type(.{ .@"enum" = .{
8383 .tag_type = std.math.IntFittingRange(0, fields.len - 1),
8484 .fields = fields,
8585 .decls = &.{},