[pool] Fix alignment assertion
I *think* it should fix https://github.com/harfbuzz/harfbuzz/issues/1901 Ie. if on a system, alignof(void*) < sizeof(void*)...
This commit is contained in:
parent
b31d627f15
commit
aade9b70aa
@ -77,7 +77,7 @@ struct hb_pool_t
|
||||
|
||||
static_assert (ChunkLen > 1, "");
|
||||
static_assert (sizeof (T) >= sizeof (void *), "");
|
||||
static_assert (alignof (T) % sizeof (void *) == 0, "");
|
||||
static_assert (alignof (T) % alignof (void *) == 0, "");
|
||||
|
||||
struct chunk_t
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user