fix build attempt ^2

This commit is contained in:
Michiharu Ariza 2018-10-22 15:52:37 -07:00
parent 3d3df5575c
commit b11032afae
2 changed files with 2 additions and 2 deletions

View File

@ -384,7 +384,7 @@ struct Remap : hb_vector_t<hb_codepoint_t>
{ return (id < len) && ((*this)[id] != CFF_UNDEF_CODE); }
inline bool excludes (hb_codepoint_t id) const
{ return !includes (i); }
{ return !includes (id); }
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
{

View File

@ -32,7 +32,7 @@
static void
test_extents_cff1 (void)
{
hb_face_t *face = hb_subset_test_open_font ("fonts/SourceSansPro-Regular.abc.otf");
hb_face_t *face = hb_test_open_font_file ("fonts/SourceSansPro-Regular.abc.otf");
g_assert (face);
hb_font_t *font = hb_font_create (face);
hb_face_destroy (face);