- Fix compile error with clang.

This commit is contained in:
Stephen Montgomery-Smith 2014-03-03 03:12:25 +00:00
parent 97ebe31869
commit 875be7b50c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346850

View file

@ -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<uint64NDArray> (bw, xdist, ydist);
else
retval(1) = calc_index<uint32NDArray> (bw, xdist, ydist);