Skip to content

Commit

Permalink
zig update: Update signature for BuildStep makeFn
Browse files Browse the repository at this point in the history
  • Loading branch information
ehaas committed Jul 19, 2024
1 parent 6c33c4c commit 5e576c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/GenerateDef.zig
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ pub fn create(owner: *std.Build, options: Options) std.Build.Module.Import {
};
}

fn make(step: *Step, prog_node: std.Progress.Node) !void {
_ = prog_node;
fn make(step: *Step, options: std.Build.Step.MakeOptions) !void {
_ = options;
const b = step.owner;
const self: *GenerateDef = @fieldParentPtr("step", step);
const arena = b.allocator;
Expand Down

0 comments on commit 5e576c5

Please sign in to comment.