From 822e99fe9ae920df41a0bd3f1125495c2ea96b45 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 18 Aug 2009 16:27:48 -0400 Subject: [PATCH] [HB] Fix wrong method signature --- src/hb-ot-layout-common-private.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-layout-common-private.hh b/src/hb-ot-layout-common-private.hh index 5faedcc3..df5e2bb3 100644 --- a/src/hb-ot-layout-common-private.hh +++ b/src/hb-ot-layout-common-private.hh @@ -143,8 +143,8 @@ struct LangSys inline hb_tag_t get_feature_index (unsigned int i) const { return featureIndex[i]; } inline bool get_feature_indexes (unsigned int *feature_count /* IN/OUT */, - hb_tag_t *feature_tags /* OUT */) const - { return featureIndex.get_indexes (feature_count, feature_tags); } + unsigned int *feature_indexes /* OUT */) const + { return featureIndex.get_indexes (feature_count, feature_indexes); } inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; } inline int get_required_feature_index (void) const -- GitLab