We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f64165 commit 70fb40fCopy full SHA for 70fb40f
src/ft2font_wrapper.cpp
@@ -170,9 +170,6 @@ static PyTypeObject PyGlyphType;
170
171
static PyObject *PyGlyph_from_FT2Font(FT2Font *font, FT2Font *parent_ft_object)
172
{
173
- const FT_Face &face = font->get_face();
174
- const FT_Glyph &glyph = font->get_last_glyph();
175
- size_t ind = font->get_last_glyph_index();
176
const long hinting_factor = font->get_hinting_factor();
177
178
PyGlyph *self;
@@ -240,7 +237,7 @@ static PyTypeObject *PyGlyph_init_type()
240
237
* FT2Font
241
238
* */
242
239
243
-typedef struct PyFT2Font
+struct PyFT2Font
244
245
PyObject_HEAD
246
FT2Font *x;
0 commit comments