[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Tue Oct 17 18:17:00 UTC 2017


 src/hb-set-private.hh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ba8b56960733b25bbb88fbdb60e7e244127d6e0c
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Tue Oct 17 11:16:36 2017 -0700

    Try fixing build on VC
    
    c:\projects\harfbuzz\src\hb-set-private.hh(151): error C2327: 'hb_set_t::page_t::v': is not a type name, static, or enumerator [C:\projects\harfbuzz\build\harfbuzz.vcxproj]

diff --git a/src/hb-set-private.hh b/src/hb-set-private.hh
index be0a90d7..689766c1 100644
--- a/src/hb-set-private.hh
+++ b/src/hb-set-private.hh
@@ -148,7 +148,7 @@ struct hb_set_t
 
     static const unsigned int ELT_BITS = sizeof (elt_t) * 8;
     static const unsigned int ELT_MASK = ELT_BITS - 1;
-    static const unsigned int BITS = sizeof (v) * 8;
+    static const unsigned int BITS = sizeof (vector_t) * 8;
     static const unsigned int MASK = BITS - 1;
     static_assert (PAGE_BITS == BITS, "");
 


More information about the HarfBuzz mailing list