[cff] Use hb_ubytes_t() instead of Null(hb_ubytes_t)
This commit is contained in:
parent
9033c7f99d
commit
8fd70362fa
|
@ -82,7 +82,7 @@ struct biased_subrs_t
|
||||||
hb_ubytes_t operator [] (unsigned int index) const
|
hb_ubytes_t operator [] (unsigned int index) const
|
||||||
{
|
{
|
||||||
if (unlikely (!subrs || index >= subrs->count))
|
if (unlikely (!subrs || index >= subrs->count))
|
||||||
return Null (hb_ubytes_t);
|
return hb_ubytes_t ();
|
||||||
else
|
else
|
||||||
return (*subrs)[index];
|
return (*subrs)[index];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue