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 */
|
} /* namespace OT */
|
||||||
|
|
||||||
|
@ -264,7 +264,7 @@ struct CmapSubtableLongSegmented
|
|||||||
USHORT reserved; /* Reserved; set to 0. */
|
USHORT reserved; /* Reserved; set to 0. */
|
||||||
ULONG length; /* Byte length of this subtable. */
|
ULONG length; /* Byte length of this subtable. */
|
||||||
ULONG language; /* Ignore. */
|
ULONG language; /* Ignore. */
|
||||||
LongSortedArrayOf<CmapSubtableLongGroup>
|
SortedArrayOf<CmapSubtableLongGroup, ULONG>
|
||||||
groups; /* Groupings. */
|
groups; /* Groupings. */
|
||||||
public:
|
public:
|
||||||
DEFINE_SIZE_ARRAY (16, groups);
|
DEFINE_SIZE_ARRAY (16, groups);
|
||||||
|
Loading…
Reference in New Issue
Block a user