[hb-info] Declare a variable unused

Fixes https://github.com/harfbuzz/harfbuzz/issues/4115
This commit is contained in:
Behdad Esfahbod 2023-02-12 10:54:07 -07:00
parent 8bdaeddfcd
commit 40fa046cf3
1 changed files with 1 additions and 1 deletions

View File

@ -846,7 +846,7 @@ struct info_t :
hb_set_next (unicodes, &u);) hb_set_next (unicodes, &u);)
{ {
hb_codepoint_t gid = 0; hb_codepoint_t gid = 0;
bool b = hb_font_get_variation_glyph (font, u, vs, &gid); HB_UNUSED bool b = hb_font_get_variation_glyph (font, u, vs, &gid);
assert (b); assert (b);
char glyphname[64]; char glyphname[64];