diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-04-22 18:07:46 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-04-22 18:07:46 -0700 |
| commit | 507a8096d2f9624bafaf963c3e189a477ef6b7bf (patch) | |
| tree | c21e3d54e1389fe44ecc7d5f230e792e26ab322d /lib/std/array_hash_map.zig | |
| parent | 7c453b91b85bab6800d24feb57c4f35b8ce48d57 (diff) | |
| download | zig-507a8096d2f9624bafaf963c3e189a477ef6b7bf.tar.gz zig-507a8096d2f9624bafaf963c3e189a477ef6b7bf.zip | |
std: fix compile errors caught by stage2 AstGen
* `comptime const` is redundant
* don't use `extern enum`; specify a tag type.
`extern enum` is only when you need tags to alias. But aliasing tags
is a smell. I will be making a proposal shortly to remove `extern enum`
from the language.
* there is no such thing as `packed enum`.
* instead of `catch |_|`, omit the capture entirely.
* unused function definition with missing parameter name
* using `try` outside of a function or test
Diffstat (limited to 'lib/std/array_hash_map.zig')
| -rw-r--r-- | lib/std/array_hash_map.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/array_hash_map.zig b/lib/std/array_hash_map.zig index 9b0c53b18a..1dc4110c75 100644 --- a/lib/std/array_hash_map.zig +++ b/lib/std/array_hash_map.zig @@ -1310,7 +1310,7 @@ test "reIndex" { } test "fromOwnedArrayList" { - comptime const array_hash_map_type = AutoArrayHashMap(i32, i32); + const array_hash_map_type = AutoArrayHashMap(i32, i32); var al = std.ArrayListUnmanaged(array_hash_map_type.Entry){}; const hash = getAutoHashFn(i32); |
