From 486555c6916750a97f1e35f506447594bf03639f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 5 Jul 2022 17:12:59 -0600 Subject: [PATCH] [open-type] Add Array24Of<> and SortedArray24Of<> --- src/hb-open-type.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index aee7064be..318c0fbe5 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -729,6 +729,7 @@ struct ArrayOf DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ); }; template using Array16Of = ArrayOf; +template using Array24Of = ArrayOf; template using Array32Of = ArrayOf; using PString = ArrayOf; @@ -961,6 +962,7 @@ struct SortedArrayOf : ArrayOf }; template using SortedArray16Of = SortedArrayOf; +template using SortedArray24Of = SortedArrayOf; template using SortedArray32Of = SortedArrayOf; /*