| author | |
| committer | |
| log | 125c1f3dd9c7221e52ad5c54a2ce4bdb870d3391 |
| tree | b352c590cd2194001fb5b3733bd257968461fcd2 |
| parent | abd099e97ff45395ec6780a88910da4d915f82c9 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/bit_set.zig+1-1| ... | ... | @@ -52,7 +52,7 @@ pub fn StaticBitSet(comptime size: usize) type { |
| 52 | 52 | /// This set is good for sets with a small size, but may generate |
| 53 | 53 | /// inefficient code for larger sets, especially in debug mode. |
| 54 | 54 | pub fn IntegerBitSet(comptime size: u16) type { |
| 55 | return packed struct { | |
| 55 | return packed struct(MaskInt) { | |
| 56 | 56 | const Self = @This(); |
| 57 | 57 | |
| 58 | 58 | // TODO: Make this a comptime field once those are fixed |