[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Mon Feb 12 02:24:44 UTC 2018
src/hb-open-type-private.hh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit dde6448379c9eeb0fc7cc476688002be661229b8
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Sun Feb 11 18:24:22 2018 -0800
Another try at fixing multiple-defintion of NullPool
This one might do it...
diff --git a/src/hb-open-type-private.hh b/src/hb-open-type-private.hh
index e5bea337..5263d6f9 100644
--- a/src/hb-open-type-private.hh
+++ b/src/hb-open-type-private.hh
@@ -140,7 +140,11 @@ static
#else
extern HB_INTERNAL
#endif
-const void * const _hb_NullPool[HB_NULL_POOL_SIZE / sizeof (void *)];
+const void * const _hb_NullPool[HB_NULL_POOL_SIZE / sizeof (void *)]
+#ifdef HB_NO_VISIBILITY
+= {}
+#endif
+;
/* Generic nul-content Null objects. */
template <typename Type>
More information about the HarfBuzz
mailing list