src/hb-coretext.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 3f3585ca1406edd74138f78739612c167ab57913 Author: Behdad Esfahbod <[email protected]> Date: Thu Aug 9 00:58:17 2018 -0700 Fix coretext build (hopefully) diff --git a/src/hb-coretext.cc b/src/hb-coretext.cc index 13ab9886..1ef5234e 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; } _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
