mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22861 std::max deduced conflicting types in unifiedcache.cpp
This commit is contained in:
parent
f4a04631cd
commit
1c312f7caa
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ int32_t UnifiedCache::_computeCountOfItemsToEvict() const {
|
|||
|
||||
int32_t unusedLimitByPercentage = fNumValuesInUse * fMaxPercentageOfInUse / 100;
|
||||
int32_t unusedLimit = std::max(unusedLimitByPercentage, fMaxUnused);
|
||||
int32_t countOfItemsToEvict = std::max(0, evictableItems - unusedLimit);
|
||||
int32_t countOfItemsToEvict = std::max<int32_t>(0, evictableItems - unusedLimit);
|
||||
return countOfItemsToEvict;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue