[GSUB] Remove a reinterpret_cast
This commit is contained in:
parent
9843f07658
commit
af84680f23
|
@ -25,7 +25,7 @@ struct SubstLookup : Lookup
|
||||||
{
|
{
|
||||||
unsigned int type = get_type ();
|
unsigned int type = get_type ();
|
||||||
if (unlikely (type == SubTable::Extension))
|
if (unlikely (type == SubTable::Extension))
|
||||||
return reinterpret_cast<const ExtensionSubst &> (get_subtable (0)).is_reverse ();
|
return get_subtable (0).u.extension.is_reverse ();
|
||||||
return lookup_type_is_reverse (type);
|
return lookup_type_is_reverse (type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue