From 457bae1a6db5fbce52ee22ef47a59d28ba5eb306 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Sat, 21 Jun 2014 22:54:34 +0100 Subject: [PATCH] [swift] killing all those distracting warnings revealed one which identified an obvious mistake --- src/Interpolation.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpolation.i b/src/Interpolation.i index 1e24512ea..12c8e6577 100644 --- a/src/Interpolation.i +++ b/src/Interpolation.i @@ -108,6 +108,6 @@ double BicubicInterpolate2d( BicubicInterpolate1d(v0, v1, v2, v3, hPosition), BicubicInterpolate1d(v4, v5, v6, v7, hPosition), BicubicInterpolate1d(v8, v9, v10, v11, hPosition), - BicubicInterpolate1d(v12, v13, v14, 15, hPosition), + BicubicInterpolate1d(v12, v13, v14, v15, hPosition), vPosition); }