From 238276400921d7caf378ce9b1fe29e914cfd94e5 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 15 Jan 2023 15:10:30 +0500 Subject: [PATCH] Fix cast in GetClampedCoords. --- libs/kimath/include/geometry/geometry_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;