This commit is contained in:
Behdad Esfahbod 2017-10-15 17:58:58 -04:00
parent 0cf7d957b7
commit 221ce6c18f
1 changed files with 1 additions and 1 deletions

View File

@ -1116,7 +1116,7 @@ struct hb_vector_size_t
}
private:
static_assert (byte_size / sizeof (elt_t) * sizeof (elt_t) == byte_size);
static_assert (byte_size / sizeof (elt_t) * sizeof (elt_t) == byte_size, "");
elt_t v[byte_size / sizeof (elt_t)];
};