zig upgrade (#3667)

* upgrade

* more fixes

* Bump Zig

---------

Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
Dylan Conway
2023-07-18 01:20:20 -07:00
committed by GitHub
parent 71f1aa1802
commit 661355546a
154 changed files with 5181 additions and 5218 deletions

View File

@@ -224,7 +224,7 @@ pub const MutableString = struct {
);
}
pub inline fn lenI(self: *MutableString) i32 {
return @intCast(i32, self.list.items.len);
return @as(i32, @intCast(self.list.items.len));
}
pub fn toOwnedSlice(self: *MutableString) string {