Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 6782bb1

Browse files
authored
stage3 (#180)
* wip * try fixing zig-uri * more uri fix * it compiles
1 parent 1c841a3 commit 6782bb1

File tree

307 files changed

+118
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

307 files changed

+118
-99
lines changed

.gyro/glob-mattnite-github.com-2375fdbb/pkg/src/main.zig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ pub const Iterator = struct {
120120

121121
i -= 1;
122122
_ = self.components.pop();
123-
self.stack.pop().dir.close();
123+
var dir_it = self.stack.pop();
124+
dir_it.dir.close();
124125
}
125126
}
126127
};

.gyro/version-mattnite-github.com-19baf08f/pkg/src/main.zig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ pub const Range = struct {
170170
options: std.fmt.FormatOptions,
171171
writer: anytype,
172172
) @TypeOf(writer).Error!void {
173-
_ = fmt;
174173
_ = options;
175174
switch (self.kind) {
176175
.exact => try writer.print("{}", .{self.min}),

0 commit comments

Comments
 (0)