mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
fix: get bun build working on window (#8712)
* work on bundler * a * YAAAAYYAYAYAYYAYA * get some more bundler tests working * Update src/bundler/bundle_v2.zig * rev * ok * i converted the cmakelists into LF * personal review * we didnt win * okey they pass * revert :( * a --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
@@ -37,7 +37,7 @@ pub const MutableString = struct {
|
||||
}
|
||||
|
||||
pub fn owns(this: *const MutableString, slice: []const u8) bool {
|
||||
return @import("root").bun.isSliceInBuffer(slice, this.list.items.ptr[0..this.list.capacity]);
|
||||
return bun.isSliceInBuffer(u8, slice, this.list.items.ptr[0..this.list.capacity]);
|
||||
}
|
||||
|
||||
pub fn growIfNeeded(self: *MutableString, amount: usize) !void {
|
||||
|
||||
Reference in New Issue
Block a user