aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authortgschultz <tgschultz@gmail.com>2018-10-23 14:55:00 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-10-24 01:47:52 -0400
commit65b9fae4f8f318f6604c8f21fef73edd123aa6ef (patch)
treebfa9d05063538562759c4a207190f00b32f6dadb /std
parentb4801186b720ec8e94005a15e13e58741f4548b4 (diff)
downloadzig-65b9fae4f8f318f6604c8f21fef73edd123aa6ef.tar.gz
zig-65b9fae4f8f318f6604c8f21fef73edd123aa6ef.zip
fix error where "std" isn't found in meta/trait
Diffstat (limited to 'std')
-rw-r--r--std/meta/index.zig2
1 files changed, 1 insertions, 1 deletions
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;