Minor: Remove LongSortedArrayOf
diff --git a/src/hb-open-type-private.hh b/src/hb-open-type-private.hh
index 2fba736..ef4ceb7 100644
--- a/src/hb-open-type-private.hh
+++ b/src/hb-open-type-private.hh
@@ -957,10 +957,6 @@
   }
 };
 
-/* A sorted array with a ULONG number of elements. */
-template <typename Type>
-struct LongSortedArrayOf : SortedArrayOf<Type, ULONG> {};
-
 
 } /* namespace OT */
 
diff --git a/src/hb-ot-cmap-table.hh b/src/hb-ot-cmap-table.hh
index abdd8db..8cc2ab7 100644
--- a/src/hb-ot-cmap-table.hh
+++ b/src/hb-ot-cmap-table.hh
@@ -264,7 +264,7 @@
   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);