diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-18 09:02:57 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-02-18 19:17:21 -0700 |
| commit | aeaef8c0ffadab4145fd002f2edd87a6db66ebd1 (patch) | |
| tree | e4c76c76173e5e72bc1947e1886662c4c6b2ba3c /lib/std/target/spirv.zig | |
| parent | f0530385b57218ef323747bdb7438330a07d25cc (diff) | |
| download | zig-aeaef8c0ffadab4145fd002f2edd87a6db66ebd1.tar.gz zig-aeaef8c0ffadab4145fd002f2edd87a6db66ebd1.zip | |
update std lib and compiler sources to new for loop syntax
Diffstat (limited to 'lib/std/target/spirv.zig')
| -rw-r--r-- | lib/std/target/spirv.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/target/spirv.zig b/lib/std/target/spirv.zig index 84b92a764c..39a91c7537 100644 --- a/lib/std/target/spirv.zig +++ b/lib/std/target/spirv.zig @@ -2075,7 +2075,7 @@ pub const all_features = blk: { .dependencies = featureSet(&[_]Feature{}), }; const ti = @typeInfo(Feature); - for (result) |*elem, i| { + for (&result, 0..) |*elem, i| { elem.index = i; elem.name = ti.Enum.fields[i].name; } |
