4238: mln/geom/rotate.hh: Fix compilation issues.

--- milena/ChangeLog | 4 ++++ milena/mln/geom/rotate.hh | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index 745ce55..eab445b 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,3 +1,7 @@ +2009-07-03 Guillaume Lazzara <guillaume.lazzara@lrde.epita.fr> + + * mln/geom/rotate.hh: Fix compilation issues. + 2009-07-03 Thierry Geraud <thierry.geraud@lrde.epita.fr> Help g++-3.3 to compile. diff --git a/milena/mln/geom/rotate.hh b/milena/mln/geom/rotate.hh index 0c920d4..8c0e3ca 100644 --- a/milena/mln/geom/rotate.hh +++ b/milena/mln/geom/rotate.hh @@ -38,7 +38,7 @@ # include <mln/core/image/imorph/tr_image.hh> -# include <mln/accu/bbox.hh> +# include <mln/accu/shape/bbox.hh> # include <mln/data/paste.hh> @@ -89,7 +89,7 @@ namespace mln /// Use literal::zero as default value for the extension. template <typename I> mln_concrete(I) - rotate(const Image<I>& input_, double angle); + rotate(const Image<I>& input, double angle); @@ -105,7 +105,7 @@ namespace mln const I& input = exact(input_); const S& output_domain = exact(output_domain_); - const mln_exact(Ext)& extension = exact(extensions_); + const mln_exact(Ext)& extension = exact(extension_); // Do not check that output_domain_ is valid. If it is not, // further in this routine, we define a default domain. @@ -134,7 +134,7 @@ namespace mln // Automatically adjusting the output domain if needed. if (!output_domain.is_valid()) { - accu::bbox<mln_site(I)> accu; + accu::shape::bbox<mln_site(I)> accu; typedef mln_site(I) P; accu.take(P(comp_transf(input.domain().pmin().to_vec()))); -- 1.5.6.5
participants (1)
-
Guillaume Lazzara