From bd369773921b4891996bd21f325702e490f47ca4 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 20 Dec 2018 23:14:24 -0500 Subject: [PATCH] Rename --- src/hb-array.hh | 2 +- src/hb-open-type.hh | 4 ++-- src/hb-vector.hh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-array.hh b/src/hb-array.hh index d4df16546..a7783511f 100644 --- a/src/hb-array.hh +++ b/src/hb-array.hh @@ -36,7 +36,7 @@ struct hb_sorted_array_t; template struct hb_array_t { - typedef Type ItemType; + typedef Type item_type_t; enum { item_size = hb_static_size (Type) }; /* diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 7f88279a7..8956f4530 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -352,7 +352,7 @@ static inline Type& operator + (Base &base, OffsetTo template struct UnsizedArrayOf { - typedef Type ItemType; + typedef Type item_type_t; enum { item_size = hb_static_size (Type) }; HB_NO_CREATE_COPY_ASSIGN_TEMPLATE (UnsizedArrayOf, Type); @@ -508,7 +508,7 @@ struct SortedUnsizedArrayOf : UnsizedArrayOf template struct ArrayOf { - typedef Type ItemType; + typedef Type item_type_t; enum { item_size = hb_static_size (Type) }; HB_NO_CREATE_COPY_ASSIGN_TEMPLATE2 (ArrayOf, Type, LenType); diff --git a/src/hb-vector.hh b/src/hb-vector.hh index d8e3f4ef1..0d98bd03e 100644 --- a/src/hb-vector.hh +++ b/src/hb-vector.hh @@ -34,7 +34,7 @@ template struct hb_vector_t { - typedef Type ItemType; + typedef Type item_type_t; enum { item_size = hb_static_size (Type) }; HB_NO_COPY_ASSIGN_TEMPLATE2 (hb_vector_t, Type, PreallocedCount);