From adfd5dd7a9df70f76e777627c7a0f44e89f5b0c4 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 9 Jan 2023 21:18:12 -0700 Subject: [PATCH] Fix TINY build --- src/hb-ot-shape.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-shape.cc b/src/hb-ot-shape.cc index b560070ed..3d207e068 100644 --- a/src/hb-ot-shape.cc +++ b/src/hb-ot-shape.cc @@ -80,9 +80,9 @@ hb_ot_shape_planner_t::hb_ot_shape_planner_t (hb_face_t *fac const hb_segment_properties_t &props) : face (face), props (props), - map (face, props), + map (face, props) #ifndef HB_NO_AAT_SHAPE - apply_morx (_hb_apply_morx (face, props)) + , apply_morx (_hb_apply_morx (face, props)) #endif { shaper = hb_ot_shaper_categorize (this);