diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-10-04 23:47:27 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-10-04 23:48:55 -0700 |
| commit | 6115cf22404467fd13d0290fc022d51d372d139a (patch) | |
| tree | 26c0bab951c81e89b5f0edcc5dc9f4b8e64df7db /lib/std/hash/benchmark.zig | |
| parent | 78902db68bbd400f6d84b65280c31d417105f2a8 (diff) | |
| download | zig-6115cf22404467fd13d0290fc022d51d372d139a.tar.gz zig-6115cf22404467fd13d0290fc022d51d372d139a.zip | |
migrate from `std.Target.current` to `@import("builtin").target`
closes #9388
closes #9321
Diffstat (limited to 'lib/std/hash/benchmark.zig')
| -rw-r--r-- | lib/std/hash/benchmark.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/hash/benchmark.zig b/lib/std/hash/benchmark.zig index d9865bcdd8..9e6ec5b6bc 100644 --- a/lib/std/hash/benchmark.zig +++ b/lib/std/hash/benchmark.zig @@ -1,7 +1,7 @@ // zig run -O ReleaseFast --zig-lib-dir ../.. benchmark.zig -const builtin = std.builtin; const std = @import("std"); +const builtin = @import("builtin"); const time = std.time; const Timer = time.Timer; const hash = std.hash; |
