authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-14 21:18:26+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-15 03:13:41+02:00
logbc377183ce687ab186ed1544d01f9680eee55f45
tree770cf513b31f6f98589715076a7ad6b5162bc653
parentbc2f7c7547dce95dfd1aa00e377ae9f366825177

reduce: Fix build due to std.mem.Alignment changes.

Closes #23884.

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

lib/compiler/reduce.zig+1-1
......@@ -403,7 +403,7 @@ fn parse(gpa: Allocator, file_path: []const u8) !Ast {
403403 file_path,
404404 std.math.maxInt(u32),
405405 null,
406 1,
406 .fromByteUnits(1),
407407 0,
408408 ) catch |err| {
409409 fatal("unable to open '{s}': {s}", .{ file_path, @errorName(err) });