From 17443e2247975508c68204704c3614878cd0f9e6 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 15 Nov 2021 23:10:10 -0800 Subject: [PATCH] zig wants us to use `@import("builtin")` now --- src/util/dep.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/dep.zig b/src/util/dep.zig index f10f62ee804f4c0bf0e0ad05948b850d688d23aa..53e87c99227e3eb8fdaa9cbf17a8d688b67bfc14 100644 --- a/src/util/dep.zig +++ b/src/util/dep.zig @@ -1,6 +1,6 @@ const std = @import("std"); const string = []const u8; -const builtin = std.builtin; +const builtin = @import("builtin"); const zigmod = @import("../lib.zig"); const u = @import("index.zig"); -- 2.54.0