fix build attempt ^4

This commit is contained in:
Michiharu Ariza 2018-10-22 16:37:39 -07:00
parent ba055a8d53
commit 960267fc43
1 changed files with 1 additions and 4 deletions

View File

@ -380,11 +380,8 @@ struct Remap : hb_vector_t<hb_codepoint_t>
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
{ return !includes (id); }
{ return (id < len) && ((*this)[id] == CFF_UNDEF_CODE); }
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
{