src/hb-coretext.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ac0264717b949df8840b179d882a9bed2993fb74 Author: Behdad Esfahbod <[email protected]> Date: Thu Nov 29 15:07:44 2018 -0500 [coretext] Fix compile Fingers crossed. diff --git a/src/hb-coretext.cc b/src/hb-coretext.cc index 918f649d..fbb165e9 100644 --- a/src/hb-coretext.cc +++ b/src/hb-coretext.cc @@ -598,7 +598,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan, } else { active_feature_t *feature = active_features.find (&event->feature); if (feature) - active_features.remove (feature - active_features); + active_features.remove (feature - (active_feature_t *) active_features); } } } _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
