mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 20:39:05 +00:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user