diff --git a/libs/kimath/include/geometry/geometry_utils.h b/libs/kimath/include/geometry/geometry_utils.h index ca86bd4e36..5ef51f96b7 100644 --- a/libs/kimath/include/geometry/geometry_utils.h +++ b/libs/kimath/include/geometry/geometry_utils.h @@ -152,7 +152,7 @@ VECTOR2 GetClampedCoords( const VECTOR2& aCoords, pad_type aP { typedef std::numeric_limits coord_limits; - long long max = long long( coord_limits::max() ) - aPadding; + long long max = static_cast( coord_limits::max() ) - aPadding; long long min = -max; in_type x = aCoords.x;