You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While compiling freetype2, I found the following warning.
hb-common.h:93:29: warning: ISO C restricts enumerator values to range of ‘int’ [-Wpedantic]
#define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint8_t)(c1))<<24)|(((uint8_t)(c2))<
HB_TAG_MAX seems to be the problem.
hb-common.h:97:20: note: in expansion of macro ‘HB_TAG’
#define HB_TAG_MAX HB_TAG(0xff,0xff,0xff,0xff)