src/hb-machinery.hh | 3 ++- src/hb-static.cc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-)
New commits: commit f1ced9be378d7c7ad3ea35a1cee6f9aff7a44a13 Author: Behdad Esfahbod <[email protected]> Date: Wed Oct 17 23:06:53 2018 -0700 More warning fix Okay, let's see if the gods are happy now... diff --git a/src/hb-static.cc b/src/hb-static.cc index 4bc1c69a..e5507960 100644 --- a/src/hb-static.cc +++ b/src/hb-static.cc @@ -44,7 +44,7 @@ DEFINE_NULL_NAMESPACE_BYTES (OT, Index) = {0xFF,0xFF}; DEFINE_NULL_NAMESPACE_BYTES (OT, LangSys) = {0x00,0x00, 0xFF,0xFF, 0x00,0x00}; DEFINE_NULL_NAMESPACE_BYTES (OT, RangeRecord) = {0x00,0x01, 0x00,0x00, 0x00, 0x00}; /* Hand-coded because Lookup is a template. Sad. */ -HB_INTERNAL const unsigned char _hb_Null_AAT_Lookup[2] = {0xFF, 0xFF}; +const unsigned char _hb_Null_AAT_Lookup[2] = {0xFF, 0xFF}; void commit 40606abd0cd40faf3973d0a8c30af90d36ae8231 Author: Behdad Esfahbod <[email protected]> Date: Wed Oct 17 23:06:37 2018 -0700 Fix build diff --git a/src/hb-static.cc b/src/hb-static.cc index ea9bd5a7..4bc1c69a 100644 --- a/src/hb-static.cc +++ b/src/hb-static.cc @@ -28,6 +28,7 @@ #include "hb-open-type.hh" #include "hb-ot-layout-common.hh" +#include "hb-aat-layout-ankr-table.hh" /* I don't even want to know why... */ #include "hb-aat-layout-common.hh" #include "hb-face.hh" commit c406aca19303e61fa5ba15d215386cfc6d920124 Author: Behdad Esfahbod <[email protected]> Date: Wed Oct 17 22:58:43 2018 -0700 Fix warning diff --git a/src/hb-machinery.hh b/src/hb-machinery.hh index 3bdbb2eb..d836a94d 100644 --- a/src/hb-machinery.hh +++ b/src/hb-machinery.hh @@ -227,7 +227,8 @@ struct hb_sanitize_context_t : inline hb_sanitize_context_t (void) : debug_depth (0), start (nullptr), end (nullptr), - writable (false), edit_count (0), max_ops (0), + max_ops (0), + writable (false), edit_count (0), blob (nullptr), num_glyphs (65536), num_glyphs_set (false) {} _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
