Fix formatting

This commit is contained in:
IntegratedQuantum 2025-03-08 14:17:17 +01:00
parent 588e12fcdb
commit 435d22083d

View File

@ -1316,7 +1316,7 @@ pub const ThreadPool = struct { // MARK: ThreadPool
/// The bit size can be changed using the `resize` function.
pub fn DynamicPackedIntArray(size: comptime_int) type { // MARK: DynamicPackedIntArray
return struct {
data: []align(64)u32 = &.{},
data: []align(64) u32 = &.{},
bitSize: u5 = 0,
const Self = @This();