---
milena/ChangeLog | 4 ++++
milena/mln/labeling/compute.hh | 14 ++++++++++++++
2 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index fde9d16..f858b7e 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-26 Guillaume Lazzara <z(a)lrde.epita.fr>
+
+ * mln/labeling/compute.hh: Add a missing overload in dispatch.
+
2010-08-24 Guillaume Lazzara <z(a)lrde.epita.fr>
* mln/value/int_s.hh: Fix warnings.
diff --git a/milena/mln/labeling/compute.hh b/milena/mln/labeling/compute.hh
index 56cb92a..518a09b 100644
--- a/milena/mln/labeling/compute.hh
+++ b/milena/mln/labeling/compute.hh
@@ -529,6 +529,20 @@ namespace mln
template <typename A, typename I, typename L>
inline
util::array<mln_result(A)>
+ compute_dispatch(mln::trait::image::value_storage::any,
+ mln::trait::image::value_storage::any,
+ const Accumulator<A>& a,
+ const Image<I>& input,
+ const Image<L>& label,
+ const mln_value(L)& nlabels)
+ {
+ return impl::generic::compute(a, input, label, nlabels);
+ }
+
+
+ template <typename A, typename I, typename L>
+ inline
+ util::array<mln_result(A)>
compute_dispatch(mln::trait::image::value_storage::one_block,
mln::trait::image::value_storage::one_block,
const Accumulator<A>& a,
--
1.5.6.5