From 65b9fae4f8f318f6604c8f21fef73edd123aa6ef Mon Sep 17 00:00:00 2001 From: tgschultz Date: Tue, 23 Oct 2018 14:55:00 -0500 Subject: [PATCH] fix error where "std" isn't found in meta/trait --- std/meta/index.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/meta/index.zig b/std/meta/index.zig index c453e13729..ee68f355ec 100644 --- a/std/meta/index.zig +++ b/std/meta/index.zig @@ -1,4 +1,4 @@ -const std = @import("std"); +const std = @import("../index.zig"); const builtin = @import("builtin"); const debug = std.debug; const mem = std.mem;