Merge pull request #121 from Mikastiv/master

remove no longer used error from set
This commit is contained in:
Robin Voetter
2024-02-27 08:48:29 +01:00
committed by GitHub

View File

@@ -14,7 +14,6 @@ pub fn main() void {
var args = std.process.argsWithAllocator(allocator) catch |err| switch (err) { var args = std.process.argsWithAllocator(allocator) catch |err| switch (err) {
error.OutOfMemory => @panic("OOM"), error.OutOfMemory => @panic("OOM"),
error.InvalidCmdLine => @panic("Invalid command line"),
}; };
const prog_name = args.next() orelse "vulkan-zig-generator"; const prog_name = args.next() orelse "vulkan-zig-generator";