[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:
Behdad Esfahbod 2019-08-13 16:09:20 -07:00
parent b31d627f15
commit aade9b70aa
1 changed files with 1 additions and 1 deletions

View File

@ -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
{