mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-10684 fix int32 to uint32
X-SVN-Rev: 38144
This commit is contained in:
parent
6f25906b7f
commit
5b0ff67dfa
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ le_uint32 LookupProcessor::applySingleLookup(le_uint16 lookupTableIndex, GlyphIt
|
|||
le_int32 LookupProcessor::selectLookups(const LEReferenceTo<FeatureTable> &featureTable, FeatureMask featureMask, le_int32 order, LEErrorCode &success)
|
||||
{
|
||||
le_uint16 lookupCount = featureTable.isValid()? SWAPW(featureTable->lookupCount) : 0;
|
||||
le_int32 store = (le_uint32)order;
|
||||
le_uint32 store = (le_uint32)order;
|
||||
|
||||
LEReferenceToArrayOf<le_uint16> lookupListIndexArray(featureTable, success, featureTable->lookupListIndexArray, lookupCount);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue