aboutsummaryrefslogtreecommitdiff
path: root/lib/init-exe
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-01-31 00:19:51 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-01-31 15:09:35 -0700
commit36e2d992dd8c45ca89a51d508c6c413cff5ad2cd (patch)
tree5e8a3244cf44c24b216959a475e0277e1ed424af /lib/init-exe
parent73cf7b64291ed8b5dcb4cb52df103be08f15a347 (diff)
downloadzig-36e2d992dd8c45ca89a51d508c6c413cff5ad2cd.tar.gz
zig-36e2d992dd8c45ca89a51d508c6c413cff5ad2cd.zip
combine std.build and std.build.Builder into std.Build
I've been wanting to do this for along time.
Diffstat (limited to 'lib/init-exe')
-rw-r--r--lib/init-exe/build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/init-exe/build.zig b/lib/init-exe/build.zig
index 36e5feddec..b88515b403 100644
--- a/lib/init-exe/build.zig
+++ b/lib/init-exe/build.zig
@@ -3,7 +3,7 @@ const std = @import("std");
// Although this function looks imperative, note that its job is to
// declaratively construct a build graph that will be executed by an external
// runner.
-pub fn build(b: *std.build.Builder) void {
+pub fn build(b: *std.Build) void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options