build: update to zig 0.12.0-dev.3659+1e5075f81

This commit is contained in:
CJ van den Berg 2024-04-16 23:22:13 +02:00
parent 07571ef363
commit ef61903334
3 changed files with 10 additions and 10 deletions

View file

@ -65,7 +65,7 @@ pub fn Closure(comptime T: type) type {
}
fn fromVtable(vtbl: *Vtable) *Self {
return @fieldParentPtr(Self, "vtbl", vtbl);
return @fieldParentPtr("vtbl", vtbl);
}
};
}