Commit bc377183ce

Alex Rønne Petersen <alex@alexrp.com>
2025-05-14 21:18:26
reduce: Fix build due to std.mem.Alignment changes.
Closes #23884.
1 parent bc2f7c7
Changed files (1)
lib
compiler
lib/compiler/reduce.zig
@@ -403,7 +403,7 @@ fn parse(gpa: Allocator, file_path: []const u8) !Ast {
         file_path,
         std.math.maxInt(u32),
         null,
-        1,
+        .fromByteUnits(1),
         0,
     ) catch |err| {
         fatal("unable to open '{s}': {s}", .{ file_path, @errorName(err) });