remove no longer used error from set

This commit is contained in:
Mikastiv
2024-02-27 00:43:06 -05:00
parent b1f3820d08
commit d1e6ebf931

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";