Fix recent commits
diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh
index c77c25f..b1fcd68 100644
--- a/src/hb-open-type.hh
+++ b/src/hb-open-type.hh
@@ -347,7 +347,7 @@
   }
   inline Type& operator [] (unsigned int i)
   {
-    const Type *p = &arrayZ[i];
+    Type *p = &arrayZ[i];
     if (unlikely (p < arrayZ)) return Crap (Type); /* Overflowed. */
     return *p;
   }