From 3f3585ca1406edd74138f78739612c167ab57913 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 9 Aug 2018 00:58:17 -0700 Subject: [PATCH] Fix coretext build (hopefully) --- src/hb-coretext.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-coretext.cc b/src/hb-coretext.cc index 13ab98865..1ef5234e2 100644 --- a/src/hb-coretext.cc +++ b/src/hb-coretext.cc @@ -348,7 +348,7 @@ hb_coretext_font_create (CTFontRef ct_font) hb_font_set_ptem (font, coretext_font_size_to_ptem (CTFontGetSize(ct_font))); /* Let there be dragons here... */ - HB_SHAPER_DATA_GET (font) = (hb_coretext_font_data_t *) CFRetain (ct_font); + HB_SHAPER_DATA (font).set_relaxed ((hb_coretext_font_data_t *) CFRetain (ct_font)); return font; }