From c7b5b6b35c0db49f4a74c1ad7c665e0f11021757 Mon Sep 17 00:00:00 2001 From: stephen Date: Mon, 3 Mar 2014 03:12:25 +0000 Subject: - Fix compile error with clang. --- math/octave-forge-image/files/patch-bwdist.cc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 math/octave-forge-image/files/patch-bwdist.cc (limited to 'math') diff --git a/math/octave-forge-image/files/patch-bwdist.cc b/math/octave-forge-image/files/patch-bwdist.cc new file mode 100644 index 000000000000..13ac487ddbf1 --- /dev/null +++ b/math/octave-forge-image/files/patch-bwdist.cc @@ -0,0 +1,11 @@ +--- bwdist.cc-orig 2014-03-03 03:07:22.000000000 +0000 ++++ bwdist.cc 2014-03-03 03:07:36.000000000 +0000 +@@ -530,7 +530,7 @@ + // Compute optional 'index to closest object pixel', only if requested + if (nargout > 1) + { +- if (numel >= pow (2, 32)) ++ if (numel >= pow (2., 32)) + retval(1) = calc_index (bw, xdist, ydist); + else + retval(1) = calc_index (bw, xdist, ydist); -- cgit