forked from organicmaps/organicmaps
[core] Warning fix
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
This commit is contained in:
parent
66c8d447d4
commit
cbafb7cc10
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ template <class ArrayT> typename ArrayT::value_type
|
|||
InterpolateByZoomLevels(int index, float lerpCoef, ArrayT const & values)
|
||||
{
|
||||
ASSERT_GREATER_OR_EQUAL(index, 0, ());
|
||||
if (index + 1 < values.size())
|
||||
if (index + 1 < static_cast<int>(values.size()))
|
||||
return values[index] + (values[index + 1] - values[index]) * lerpCoef;
|
||||
return values.back();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue