Minor: Remove LongSortedArrayOf

This commit is contained in:
Behdad Esfahbod 2014-06-27 15:23:18 -04:00
parent bb6ecf2ce5
commit 41ea594950
2 changed files with 1 additions and 5 deletions

View File

@ -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 */

View File

@ -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);