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 c453e137292b056749d5249bc6bc35eca20b0df1..ee68f355ecb12ba93261295c8110c1cb3e473385 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; -- 2.54.0