[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*)...
pull/1902/head
Behdad Esfahbod 6 years ago
parent b31d627f15
commit aade9b70aa
  1. 2
      src/hb-pool.hh

@ -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…
Cancel
Save