Fix redeclaration of void iulib::addscaled https://github.com/tmbarchive/iulib/issues/2 https://github.com/tmbarchive/iulib/issues/3 https://github.com/tmbarchive/iulib/pull/4 --- imglib/imgops.cc.orig +++ imglib/imgops.cc @@ -133,7 +133,7 @@ namespace iulib { template void addscaled(narray &dest,narray &src, - V scale=1,int dx=0,int dy=0) { + V scale,int dx,int dy) { for (int i=0; i - void addscaled(colib::narray &, colib::narray &, V, int, int); + void addscaled(colib::narray &, colib::narray &, V scale=1,int dx=0,int dy=0); template void tighten(colib::narray &image); template