Rename
authorBehdad Esfahbod <behdad@behdad.org>
Fri, 21 Dec 2018 06:57:40 +0000 (01:57 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Fri, 21 Dec 2018 06:57:40 +0000 (01:57 -0500)
src/hb-array.hh
src/hb-open-type.hh
src/hb-vector.hh

index a778351..af4233b 100644 (file)
@@ -36,7 +36,7 @@ struct hb_sorted_array_t;
 template <typename Type>
 struct hb_array_t
 {
-  typedef Type item_type_t;
+  typedef Type item_t;
   enum { item_size = hb_static_size (Type) };
 
   /*
index 8956f45..4c6d5e3 100644 (file)
@@ -352,7 +352,7 @@ static inline Type& operator + (Base &base, OffsetTo<Type, OffsetType, has_null>
 template <typename Type>
 struct UnsizedArrayOf
 {
-  typedef Type item_type_t;
+  typedef Type item_t;
   enum { item_size = hb_static_size (Type) };
 
   HB_NO_CREATE_COPY_ASSIGN_TEMPLATE (UnsizedArrayOf, Type);
@@ -508,7 +508,7 @@ struct SortedUnsizedArrayOf : UnsizedArrayOf<Type>
 template <typename Type, typename LenType=HBUINT16>
 struct ArrayOf
 {
-  typedef Type item_type_t;
+  typedef Type item_t;
   enum { item_size = hb_static_size (Type) };
 
   HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (ArrayOf, Type, LenType);
index b4175c5..4e962d2 100644 (file)
@@ -34,7 +34,7 @@
 template <typename Type, unsigned int PreallocedCount=8>
 struct hb_vector_t
 {
-  typedef Type item_type_t;
+  typedef Type item_t;
   enum { item_size = hb_static_size (Type) };
 
   HB_NO_COPY_ASSIGN_TEMPLATE2 (hb_vector_t, Type, PreallocedCount);