On 07/01/2013 16:34, Coddy Levi wrote:
diff --git a/milena/mln/inpainting/inpaint.hh
b/milena/mln/inpainting/inpaint.hh
index d5e89c7..ff58e75 100644
--- a/milena/mln/inpainting/inpaint.hh
+++ b/milena/mln/inpainting/inpaint.hh
@@ -39,7 +39,8 @@ namespace mln
I<T> inpaint(const Image<I<T> >& src_,
const Image<I<bool> >& mask_,
F inpaint_method,
- unsigned inpaint_radius);
+ unsigned inpaint_radius,
+ double* out_error = NULL);
In C++, the literal null pointer constant is `0' (C++98/03) or `nullptr'
(C++11), not `NULL' (which is a C construct).