Replace @Deprecated ICU API - USCRIPT_CODE_LIMIT

Use of the deprecated API USCRIPT_CODE_LIMIT prevents harfbuzz
using the ICU4C as a shared library.

The API has been replaced by u_getIntPropertyMaxValue(UCHAR_SCRIPT)
pull/1418/head
Victor Chang 6 years ago
parent 1042d9fbc0
commit a85886fc77
  1. 3
      src/hb-icu.cc

@ -65,7 +65,8 @@ hb_icu_script_from_script (hb_script_t script)
if (unlikely (script == HB_SCRIPT_INVALID))
return USCRIPT_INVALID_CODE;
for (unsigned int i = 0; i < USCRIPT_CODE_LIMIT; i++)
unsigned int maxScriptCode = u_getIntPropertyMaxValue(UCHAR_SCRIPT);
for (unsigned int i = 0; i <= maxScriptCode; i++)
if (unlikely (hb_icu_script_to_script ((UScriptCode) i) == script))
return (UScriptCode) i;

Loading…
Cancel
Save