fix build with clang/libcxx on linux

This closes #3807 issue. Because of clang/libcxx 3.8 have overload of
`floor` function in math.h for `float` and `double` we got compilation
error, but obvious fix:
1.0 -> 1.0f
not works, because of at least on Android we have no floor(float)
overload. So force usage of floor(double) which exists on every platform.
This commit is contained in:
Evgeniy A. Dushistov 2016-10-10 01:49:52 +03:00
parent 75b38035b7
commit fcd5fe3c5f

View file

@ -561,7 +561,7 @@ void PathTextLayout::CalculatePositions(vector<float> & offsets, float splineLen
}
else
{
double const textCount = max(floor(pathLength / minPeriodSize), 1.0);
double const textCount = max(floor(static_cast<double>(pathLength / minPeriodSize)), 1.0);
double const glbTextLen = splineLength / textCount;
for (double offset = 0.5 * glbTextLen; offset < splineLength; offset += glbTextLen)
offsets.push_back(offset);