diff options
| author | tgschultz <tgschultz@gmail.com> | 2018-10-23 14:55:00 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-10-24 01:47:52 -0400 |
| commit | 65b9fae4f8f318f6604c8f21fef73edd123aa6ef (patch) | |
| tree | bfa9d05063538562759c4a207190f00b32f6dadb /std | |
| parent | b4801186b720ec8e94005a15e13e58741f4548b4 (diff) | |
| download | zig-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.zig | 2 |
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; |
