4153: mln/labeling/colorize.hh: Fix gcc-3.3 compilation issues.

--- milena/ChangeLog | 4 ++++ milena/mln/labeling/colorize.hh | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index ac8a01e..492c695 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,3 +1,7 @@ +2009-06-16 Guillaume Lazzara <guillaume.lazzara@lrde.epita.fr> + + * mln/labeling/colorize.hh: Fix gcc-3.3 compilation issues. + 2009-06-16 Edwin Carlinet <carlinet@lrde.epita.fr> Move rank accus in stat directory. diff --git a/milena/mln/labeling/colorize.hh b/milena/mln/labeling/colorize.hh index 19d00af..06a3b8e 100644 --- a/milena/mln/labeling/colorize.hh +++ b/milena/mln/labeling/colorize.hh @@ -46,6 +46,7 @@ namespace mln namespace labeling { + // Forward declaration. namespace colorize_ { extern unsigned min_value; @@ -83,8 +84,7 @@ namespace mln /// \overload // template <typename L> - inline - mln_ch_value(L, value::rgb8) + mln_ch_value(L, mln::value::rgb8) colorize(const Image<L>& input, const mln_value(L)& nlabels); @@ -183,11 +183,11 @@ namespace mln template <typename L> inline - mln_ch_value(L, value::rgb8) + mln_ch_value(L, mln::value::rgb8) colorize(const Image<L>& input, const mln_value(L)& nlabels) { - return colorize(value::rgb8(), input, nlabels); + return colorize(mln::value::rgb8(), input, nlabels); } -- 1.5.6.5
participants (1)
-
Guillaume Lazzara