diff --git a/src/hb-subset-plan.hh b/src/hb-subset-plan.hh index 2d1bea231..214ea9341 100644 --- a/src/hb-subset-plan.hh +++ b/src/hb-subset-plan.hh @@ -95,7 +95,6 @@ struct contour_point_t HB_ALWAYS_INLINE void translate (const contour_point_t &p) { x += p.x; y += p.y; } - float x; float y; uint8_t flag; @@ -104,16 +103,6 @@ struct contour_point_t struct contour_point_vector_t : hb_vector_t { - void extend (const hb_array_t &a) - { - unsigned int old_len = length; - if (unlikely (!resize (old_len + a.length, false))) - return; - auto arrayZ = this->arrayZ + old_len; - unsigned count = a.length; - hb_memcpy (arrayZ, a.arrayZ, count * sizeof (arrayZ[0])); - } - bool add_deltas (hb_array_t deltas_x, hb_array_t deltas_y, hb_array_t indices)