Minor: Remove LongSortedArrayOf
This commit is contained in:
parent
bb6ecf2ce5
commit
41ea594950
|
@ -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…
Reference in New Issue