[core] Warning fix

Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
This commit is contained in:
Andrew Shkrob 2023-10-23 23:15:56 +02:00 committed by Alexander Borsuk
parent 66c8d447d4
commit cbafb7cc10

View file

@ -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();
}