Fix return type of alignof() fallback
diff --git a/src/hb-private.hh b/src/hb-private.hh
index ff339df..ae73387 100644
--- a/src/hb-private.hh
+++ b/src/hb-private.hh
@@ -95,7 +95,7 @@
     char c;
     T t;
   };
-  static constexpr unsigned int value = offsetof (s, t);
+  static constexpr size_t value = offsetof (s, t);
 };
 
 #if __cplusplus < 201103L