[arrays] Minor
diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh
index e4f4eb9..67962ee 100644
--- a/src/hb-open-type.hh
+++ b/src/hb-open-type.hh
@@ -352,9 +352,8 @@
 template <typename Type>
 struct UnsizedArrayOf
 {
-  static_assert ((bool) (unsigned) hb_static_size (Type), "");
-
-  enum { item_size = Type::static_size };
+  typedef Type ItemType;
+  enum { item_size = hb_static_size (Type) };
 
   HB_NO_CREATE_COPY_ASSIGN_TEMPLATE (UnsizedArrayOf, Type);
 
@@ -509,9 +508,8 @@
 template <typename Type, typename LenType=HBUINT16>
 struct ArrayOf
 {
-  static_assert ((bool) (unsigned) hb_static_size (Type), "");
-
-  enum { item_size = Type::static_size };
+  typedef Type ItemType;
+  enum { item_size = hb_static_size (Type) };
 
   HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (ArrayOf, Type, LenType);