zig

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

commit 4be1bb4aacfbea422046a7790a5383960a1b97dc (tree)
parent 4ee79aa33cb067c0a13837658d63c929b4ecaf20
Author: Frank Denis <124872+jedisct1@users.noreply.github.com>
Date:   Mon,  5 Dec 2022 05:44:14 +0100

std.crypto benchmark: don't use a relative path to import std (#13772)


Diffstat:
Mlib/std/crypto/benchmark.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/crypto/benchmark.zig b/lib/std/crypto/benchmark.zig @@ -1,6 +1,6 @@ // zig run -O ReleaseFast --zig-lib-dir ../.. benchmark.zig -const std = @import("../std.zig"); +const std = @import("std"); const builtin = @import("builtin"); const mem = std.mem; const time = std.time;