| ... | @@ -52,7 +52,7 @@ pub fn StaticBitSet(comptime size: usize) type { | ... | @@ -52,7 +52,7 @@ pub fn StaticBitSet(comptime size: usize) type { |
| 52 | /// This set is good for sets with a small size, but may generate | 52 | /// This set is good for sets with a small size, but may generate |
| 53 | /// inefficient code for larger sets, especially in debug mode. | 53 | /// inefficient code for larger sets, especially in debug mode. |
| 54 | pub fn IntegerBitSet(comptime size: u16) type { | 54 | pub fn IntegerBitSet(comptime size: u16) type { |
| 55 | return packed struct { | 55 | return packed struct(MaskInt) { |
| 56 | const Self = @This(); | 56 | const Self = @This(); |
| 57 | | 57 | |
| 58 | // TODO: Make this a comptime field once those are fixed | 58 | // TODO: Make this a comptime field once those are fixed |