From 1fc6b69aed28aa768b65a8cf0825b79aa851a71f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 31 Mar 2021 15:30:35 -0600 Subject: [PATCH] s/UnsizedOffsetArrayOf/UnsizedArray16OfOffsetTo/g --- src/hb-open-type.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index b9b397a3e..3f22bd4bf 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -524,11 +524,11 @@ struct UnsizedArrayOf /* Unsized array of offset's */ template -using UnsizedOffsetArrayOf = UnsizedArrayOf>; +using UnsizedArray16OfOffsetTo = UnsizedArrayOf>; /* Unsized array of offsets relative to the beginning of the array itself. */ template -struct UnsizedOffsetListOf : UnsizedOffsetArrayOf +struct UnsizedOffsetListOf : UnsizedArray16OfOffsetTo { const Type& operator [] (int i_) const { @@ -549,7 +549,7 @@ struct UnsizedOffsetListOf : UnsizedOffsetArrayOf bool sanitize (hb_sanitize_context_t *c, unsigned int count, Ts&&... ds) const { TRACE_SANITIZE (this); - return_trace ((UnsizedOffsetArrayOf + return_trace ((UnsizedArray16OfOffsetTo ::sanitize (c, count, this, hb_forward (ds)...))); } };