summaryrefslogtreecommitdiff
path: root/pango/opentype/hb-ot-layout-common-private.hh
diff options
context:
space:
mode:
Diffstat (limited to 'pango/opentype/hb-ot-layout-common-private.hh')
-rw-r--r--pango/opentype/hb-ot-layout-common-private.hh11
1 files changed, 1 insertions, 10 deletions
diff --git a/pango/opentype/hb-ot-layout-common-private.hh b/pango/opentype/hb-ot-layout-common-private.hh
index a6fa2b45..72c2db03 100644
--- a/pango/opentype/hb-ot-layout-common-private.hh
+++ b/pango/opentype/hb-ot-layout-common-private.hh
@@ -61,16 +61,7 @@ struct Record
};
template <typename Type>
-struct RecordArrayOf : ArrayOf<Record<Type> >
-{
- inline bool sanitize (SANITIZE_ARG_DEF, const char *base) {
- if (!(SANITIZE (this->len) && SANITIZE_GET_SIZE())) return false;
- unsigned int count = this->len;
- for (unsigned int i = 0; i < count; i++)
- if (!SANITIZE_THIS (this->array[i]))
- return false;
- }
-};
+struct RecordArrayOf : ArrayOf<Record<Type> > {};
template <typename Type>
struct RecordListOf : RecordArrayOf<Type>