Disambiguate fabs() cast.

This commit is contained in:
Simon Richter 2015-07-31 08:15:42 -04:00 committed by Wayne Stambaugh
parent cb629e0ad4
commit b35ad79d7b
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ void SHAPE_POLY_SET::Inflate( int aFactor, int aCircleSegmentsCount )
PolyTree solution;
c.ArcTolerance = (double)fabs( aFactor ) / M_PI / aCircleSegmentsCount;
c.ArcTolerance = fabs( (double) aFactor ) / M_PI / aCircleSegmentsCount;
c.Execute( solution, aFactor );