--- milena/ChangeLog | 4 ++++ milena/mln/geom/rotate.hh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog index 40e09ce..37322db 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,5 +1,9 @@ 2009-07-13 Guillaume Lazzara guillaume.lazzara@lrde.epita.fr
+ * mln/geom/rotate.hh: use mln_domain instead of mln_box. + +2009-07-13 Guillaume Lazzara guillaume.lazzara@lrde.epita.fr + Add missing headers to doc examples.
* doc/examples/tuto2_first_image.cc, diff --git a/milena/mln/geom/rotate.hh b/milena/mln/geom/rotate.hh index 6cb6773..87cc94c 100644 --- a/milena/mln/geom/rotate.hh +++ b/milena/mln/geom/rotate.hh @@ -168,8 +168,8 @@ namespace mln // Old versions of GCC (including Apple GCC 4.0.1) do not parse // correctly `mln_box(I)()'. Hence, we need to typedef // `mln_box(I)' first. - typedef mln_box(I) box_t; - return rotate(input, angle, extension, box_t()); + typedef mln_domain(I) domain_t; + return rotate(input, angle, extension, domain_t()); }