mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
fix alignment of slab
This commit is contained in:
parent
85a593222e
commit
d5415391fc
@ -11,7 +11,12 @@ typedef struct PoolArena {
|
|||||||
int block_size;
|
int block_size;
|
||||||
int block_count;
|
int block_count;
|
||||||
int unused_length;
|
int unused_length;
|
||||||
|
|
||||||
|
union {
|
||||||
char data[kPoolArenaSize];
|
char data[kPoolArenaSize];
|
||||||
|
int64_t _align64;
|
||||||
|
};
|
||||||
|
|
||||||
int unused[];
|
int unused[];
|
||||||
} PoolArena;
|
} PoolArena;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user