mirror of
https://github.com/ziglang/zig.git
synced 2026-01-02 03:25:01 +00:00
* Move functionality from generic functions that doesn't depend on the type into a function that only depends on comptime alignment. This reduces comptime code duplication because e.g. `alloc(u32, )` and `alloc(i32, )` now use the same function `allocWithFoo(4, 4, )` under the hood.