From 221ce6c18f2a1e878b68eb0a97f235efa4c044d3 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 15 Oct 2017 17:58:58 -0400 Subject: [PATCH] Fix bots --- src/hb-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index 5deaa9d..3c00492 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -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)]; }; -- 2.7.4