forked from organicmaps/organicmaps
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:
parent
75b38035b7
commit
fcd5fe3c5f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue