diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 00:19:51 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 15:09:35 -0700 |
| commit | 36e2d992dd8c45ca89a51d508c6c413cff5ad2cd (patch) | |
| tree | 5e8a3244cf44c24b216959a475e0277e1ed424af /lib/init-lib | |
| parent | 73cf7b64291ed8b5dcb4cb52df103be08f15a347 (diff) | |
| download | zig-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-lib')
| -rw-r--r-- | lib/init-lib/build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/init-lib/build.zig b/lib/init-lib/build.zig index 4a7b700dc2..5ebb55373f 100644 --- a/lib/init-lib/build.zig +++ b/lib/init-lib/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 |
