1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-20 17:46:04 +02:00
ziglings/patches/patches/069_comptime4.patch
2021-04-21 09:47:16 -04:00

7 lines
227 B
Diff

45,46c45,46
< fn makeSequence(comptime T: type, ??? size: usize) [???]T {
< var sequence: [???]T = undefined;
---
> fn makeSequence(comptime T: type, comptime size: usize) [size]T {
> var sequence: [size]T = undefined;