Minor: Remove LongSortedArrayOf

pull/27/merge
Behdad Esfahbod 11 years ago
parent bb6ecf2ce5
commit 41ea594950
  1. 4
      src/hb-open-type-private.hh
  2. 2
      src/hb-ot-cmap-table.hh

@ -957,10 +957,6 @@ struct SortedArrayOf : ArrayOf<Type, LenType>
}
};
/* A sorted array with a ULONG number of elements. */
template <typename Type>
struct LongSortedArrayOf : SortedArrayOf<Type, ULONG> {};
} /* namespace OT */

@ -264,7 +264,7 @@ struct CmapSubtableLongSegmented
USHORT reserved; /* Reserved; set to 0. */
ULONG length; /* Byte length of this subtable. */
ULONG language; /* Ignore. */
LongSortedArrayOf<CmapSubtableLongGroup>
SortedArrayOf<CmapSubtableLongGroup, ULONG>
groups; /* Groupings. */
public:
DEFINE_SIZE_ARRAY (16, groups);

Loading…
Cancel
Save