aboutsummaryrefslogtreecommitdiff
path: root/tools/update_spirv_features.zig
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-05-20 23:06:42 +0100
committerLinus Groh <mail@linusgroh.de>2023-05-25 20:17:07 +0100
commit4159add4abe92e903d8797a005344d8325def2fc (patch)
treea18989d582306738a92706b1d5cfc846d229ad11 /tools/update_spirv_features.zig
parente96de1b63688d3a92932fe4afdfe37dbe2315f53 (diff)
downloadzig-4159add4abe92e903d8797a005344d8325def2fc.tar.gz
zig-4159add4abe92e903d8797a005344d8325def2fc.zip
std.fs.file: Rename File.Kind enum values to snake case
Diffstat (limited to 'tools/update_spirv_features.zig')
-rw-r--r--tools/update_spirv_features.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/update_spirv_features.zig b/tools/update_spirv_features.zig
index 44d8b6a445..31bdf40ef7 100644
--- a/tools/update_spirv_features.zig
+++ b/tools/update_spirv_features.zig
@@ -227,7 +227,7 @@ fn gather_extensions(allocator: Allocator, spirv_registry_root: []const u8) ![]c
var vendor_it = extensions_dir.iterate();
while (try vendor_it.next()) |vendor_entry| {
- std.debug.assert(vendor_entry.kind == .Directory); // If this fails, the structure of SPIRV-Registry has changed.
+ std.debug.assert(vendor_entry.kind == .directory); // If this fails, the structure of SPIRV-Registry has changed.
const vendor_dir = try extensions_dir.dir.openIterableDir(vendor_entry.name, .{});
var ext_it = vendor_dir.iterate();