summaryrefslogtreecommitdiffhomepage
path: root/spline/spline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'spline/spline.cpp')
-rw-r--r--spline/spline.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/spline/spline.cpp b/spline/spline.cpp
index 2fe73a01..b6fdd9c5 100644
--- a/spline/spline.cpp
+++ b/spline/spline.cpp
@@ -188,8 +188,8 @@ void spline::update_interp_data()
{
const double x = points[0].x();
const double y = points[0].y();
- const int max = clamp(iround(x * c), 1, value_count-1);
- for (int k = 0; k <= max; k++)
+ const unsigned max = (unsigned)clamp(iround(x * c), 1, value_count-1);
+ for (unsigned k = 0; k <= max; k++)
{
if (k < value_count)
data[unsigned(k)] = float(y * k / max);