From 74467b790154838e86c3ca8df0eaafe82e87f976 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 25 Jul 2018 14:30:07 -0700 Subject: [PATCH] Fix compile --- src/hb-shaper-private.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-shaper-private.hh b/src/hb-shaper-private.hh index 3fa532162..8f86b4eb5 100644 --- a/src/hb-shaper-private.hh +++ b/src/hb-shaper-private.hh @@ -97,10 +97,10 @@ HB_SHAPER_DATA_ENSURE_FUNC(shaper, object) (hb_##object##_t *object) \ retry: \ HB_SHAPER_DATA_TYPE (shaper, object) *data = (HB_SHAPER_DATA_TYPE (shaper, object) *) hb_atomic_ptr_get (&HB_SHAPER_DATA (shaper, object)); \ if (likely (data) && !(condition)) { \ - /* Note that evaluating condition above can be dangerous if another thread - * got here first and destructed data. That's, as always, bad use pattern. - * If you modify the font (change font size), other threads must not be - * using it at the same time. */ + /* Note that evaluating condition above can be dangerous if another thread \ + * got here first and destructed data. That's, as always, bad use pattern. \ + * If you modify the font (change font size), other threads must not be \ + * using it at the same time. */ \ /* Drop and recreate. */ \ /* If someone dropped it in the mean time, throw it away and don't touch it. \ * Otherwise, destruct it. */ \