fix build attempt ^4
This commit is contained in:
parent
ba055a8d53
commit
960267fc43
|
@ -380,11 +380,8 @@ struct Remap : hb_vector_t<hb_codepoint_t>
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool includes (hb_codepoint_t id) const
|
|
||||||
{ return (id < len) && ((*this)[id] != CFF_UNDEF_CODE); }
|
|
||||||
|
|
||||||
inline bool excludes (hb_codepoint_t id) const
|
inline bool excludes (hb_codepoint_t id) const
|
||||||
{ return !includes (id); }
|
{ return (id < len) && ((*this)[id] == CFF_UNDEF_CODE); }
|
||||||
|
|
||||||
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
|
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue