We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dae7b07 + e142e8d commit 7a44bb2Copy full SHA for 7a44bb2
1 file changed
src/tri/self_hosting_loop.zig
@@ -196,8 +196,8 @@ pub const SelfHostingSession = struct {
196
.safeguards = safeguards,
197
.session_id = session_id,
198
.start_time = start_time,
199
- .target_files = std.ArrayList([]const u8).initCapacity(allocator, 0) catch unreachable,
200
- .patch_history = std.ArrayList(SelfPatch).initCapacity(allocator, 0) catch unreachable,
+ .target_files = try std.ArrayList([]const u8).initCapacity(allocator, 0),
+ .patch_history = try std.ArrayList(SelfPatch).initCapacity(allocator, 0),
201
.metrics = ImprovementMetrics{},
202
.current_branch = current_branch,
203
.backup_dir = backup_dir,
0 commit comments