From d95d1b7a27cc74c95fc4933cbe307c107d104c18 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 19 Jul 2021 06:41:35 -0700 Subject: [PATCH] build.zig- fix import --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index ab26cdc00771615ff83151f28e47b27204482c3f..da571d971404e6d13064ed35ea593d15c75409ec 100644 --- a/build.zig +++ b/build.zig @@ -1,6 +1,6 @@ -const Builder = @import("std").build.Builder; +const std = @import("std"); -pub fn build(b: *Builder) void { +pub fn build(b: *std.build.Builder) 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 -- 2.54.0