zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 65b9fae4f8f318f6604c8f21fef73edd123aa6ef (tree)
parent b4801186b720ec8e94005a15e13e58741f4548b4
Author: tgschultz <tgschultz@gmail.com>
Date:   Tue, 23 Oct 2018 14:55:00 -0500

fix error where "std" isn't found in meta/trait
Diffstat:
Mstd/meta/index.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;