Minor
This commit is contained in:
parent
5d773ec600
commit
9c0c3589f3
@ -647,10 +647,6 @@ struct Lookup
|
||||
{
|
||||
unsigned int get_subtable_count () const { return subTable.len; }
|
||||
|
||||
template <typename TSubTable>
|
||||
const TSubTable& get_subtable (unsigned int i) const
|
||||
{ return this+CastR<OffsetArrayOf<TSubTable>> (subTable)[i]; }
|
||||
|
||||
template <typename TSubTable>
|
||||
const OffsetArrayOf<TSubTable>& get_subtables () const
|
||||
{ return CastR<OffsetArrayOf<TSubTable>> (subTable); }
|
||||
@ -658,6 +654,13 @@ struct Lookup
|
||||
OffsetArrayOf<TSubTable>& get_subtables ()
|
||||
{ return CastR<OffsetArrayOf<TSubTable>> (subTable); }
|
||||
|
||||
template <typename TSubTable>
|
||||
const TSubTable& get_subtable (unsigned int i) const
|
||||
{ return this+get_subtables<TSubTable> ()[i]; }
|
||||
template <typename TSubTable>
|
||||
TSubTable& get_subtable (unsigned int i)
|
||||
{ return this+get_subtables<TSubTable> ()[i]; }
|
||||
|
||||
unsigned int get_size () const
|
||||
{
|
||||
const HBUINT16 &markFilteringSet = StructAfter<const HBUINT16> (subTable);
|
||||
@ -745,8 +748,7 @@ struct Lookup
|
||||
if (!markFilteringSet.sanitize (c)) return_trace (false);
|
||||
}
|
||||
|
||||
if (unlikely (!CastR<OffsetArrayOf<TSubTable>> (subTable)
|
||||
.sanitize (c, this, get_type ())))
|
||||
if (unlikely (!get_subtables<TSubTable> ().sanitize (c, this, get_type ())))
|
||||
return_trace (false);
|
||||
|
||||
if (unlikely (get_type () == TSubTable::Extension))
|
||||
|
Loading…
Reference in New Issue
Block a user