Skip to content

Commit

Permalink
remove unecessary panic
Browse files Browse the repository at this point in the history
  • Loading branch information
the-argus committed Oct 28, 2023
1 parent fb7d0bc commit 1310c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const zcc = @import("compile_commands");
pub fn build(b: *std.Build) !void {
// make a list of targets that have include files and c source files
var targets = std.ArrayList(*std.Build.CompileStep).init(b.allocator) catch @panic("OOM");
var targets = std.ArrayList(*std.Build.CompileStep).init(b.allocator);
// create your executable
const exe = b.addExecutable(.{
Expand Down

0 comments on commit 1310c5d

Please sign in to comment.