* mln/trait/ch_value.hh
(mln::trait::impl::ch_value_<M< D,tag::psite_<P>,tag::value_<T> >,
V>):
Catch up with current parameter names, and turn into...
(mln::trait::impl::ch_value_<M< D,tag::psite_<G>,tag::value_<T> >,
V>):
...this.
---
milena/ChangeLog | 10 ++++++++++
milena/mln/trait/ch_value.hh | 8 ++++----
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index c8d3e1d..94a09bc 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,13 @@
+2008-10-24 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Update mln/trait/ch_value.hh w.r.t. mln::complex_image.
+
+ * mln/trait/ch_value.hh
+ (mln::trait::impl::ch_value_<M< D,tag::psite_<P>,tag::value_<T> >,
V>):
+ Catch up with current parameter names, and turn into...
+ (mln::trait::impl::ch_value_<M< D,tag::psite_<G>,tag::value_<T> >,
V>):
+ ...this.
+
2008-10-24 Guillaume Lazzara <z(a)lrde.epita.fr>
Update tutorial.
diff --git a/milena/mln/trait/ch_value.hh b/milena/mln/trait/ch_value.hh
index 8f7f384..f1f33bc 100644
--- a/milena/mln/trait/ch_value.hh
+++ b/milena/mln/trait/ch_value.hh
@@ -130,12 +130,12 @@ namespace mln
typedef mln_ch_value(I, V) ret;
};
- // For mln::complex_image<D, P, T>.
+ // For mln::complex_image<D, G, T>.
template < template <unsigned, class, class> class M,
- unsigned D, typename P, typename T, typename V >
- struct ch_value_< M< D, tag::psite_<P>, tag::value_<T> >, V
>
+ unsigned D, typename G, typename T, typename V >
+ struct ch_value_< M< D, tag::psite_<G>, tag::value_<T> >, V
>
{
- typedef M< D, P, V > ret;
+ typedef M< D, G, V > ret;
};
// For mln::neighb::image<I, N>.
--
1.5.6.5