fix build attempt ^2
This commit is contained in:
parent
3d3df5575c
commit
b11032afae
|
@ -384,7 +384,7 @@ struct Remap : hb_vector_t<hb_codepoint_t>
|
||||||
{ return (id < len) && ((*this)[id] != CFF_UNDEF_CODE); }
|
{ 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 (i); }
|
{ return !includes (id); }
|
||||||
|
|
||||||
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
|
inline hb_codepoint_t operator[] (hb_codepoint_t i) const
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
static void
|
static void
|
||||||
test_extents_cff1 (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);
|
g_assert (face);
|
||||||
hb_font_t *font = hb_font_create (face);
|
hb_font_t *font = hb_font_create (face);
|
||||||
hb_face_destroy (face);
|
hb_face_destroy (face);
|
||||||
|
|
Loading…
Reference in New Issue