mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-17 10:45:43 +00:00
[hmtx] Fix signedness issue
Fixes https://github.com/harfbuzz/harfbuzz/issues/1248#issuecomment-438689499
This commit is contained in:
parent
29db2a44a6
commit
48d16c2ab2
1 changed files with 3 additions and 3 deletions
|
@ -289,9 +289,9 @@ struct hmtxvmtx
|
|||
|
||||
public:
|
||||
bool has_font_extents;
|
||||
unsigned short ascender;
|
||||
unsigned short descender;
|
||||
unsigned short line_gap;
|
||||
int ascender;
|
||||
int descender;
|
||||
int line_gap;
|
||||
|
||||
protected:
|
||||
unsigned int num_metrics;
|
||||
|
|
Loading…
Add table
Reference in a new issue