--- milena/ChangeLog | 4 ++++ milena/tests/border/mirror.cc | 19 +++++++------------ 2 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog index cb63be3..18c7eaf 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,5 +1,9 @@ 2011-09-08 Guillaume Lazzara z@lrde.epita.fr
+ * tests/border/mirror.cc: Add missing includes. + +2011-09-08 Guillaume Lazzara z@lrde.epita.fr + Fix doc generation.
* doc/Doxyfile.in: Enable source code parsing and listing. Fix diff --git a/milena/tests/border/mirror.cc b/milena/tests/border/mirror.cc index e49e4b0..09435e5 100644 --- a/milena/tests/border/mirror.cc +++ b/milena/tests/border/mirror.cc @@ -1,4 +1,5 @@ -// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE) +// Copyright (C) 2007, 2008, 2009, 2011 EPITA Research and Development +// Laboratory (LRDE) // // This file is part of Olena. // @@ -23,13 +24,16 @@ // exception does not however invalidate any other reasons why the // executable file might be covered by the GNU General Public License.
+/// \file + #include <mln/core/image/image1d.hh> #include <mln/core/image/image2d.hh> +#include <mln/core/image/dmorph/extended.hh> #include <mln/debug/iota.hh> #include <mln/border/mirror.hh> #include <mln/opt/element.hh> - -#include <mln/debug/println_with_border.hh> +#include <mln/data/paste_without_localization.hh> +#include <mln/data/compare.hh>
using namespace mln;
@@ -53,15 +57,6 @@ main (void)
// Image2d { - image2d<unsigned> input(2, 2, 4); - debug::iota(input, 0); - border::mirror(input); - debug::println_with_border(input); - } - - - // Image2d - { unsigned ref_data[6][7] = { { 1, 1, 4, 5, 6, 3, 3 }, { 1, 1, 1, 2, 3, 3, 3 },