Fix recent commits

This commit is contained in:
Behdad Esfahbod 2018-11-16 16:52:42 -08:00
parent 0328a1ce41
commit 9714e114b8
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ struct UnsizedArrayOf
}
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;
}