last-svn-commit-591-g4b787b3 mln/data/paste_without_localization.hh: Add a missing dispatch overload.

--- milena/ChangeLog | 5 +++++ milena/mln/data/paste_without_localization.hh | 13 +++++++++++++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index 358a06b..77ad3a4 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,5 +1,10 @@ 2010-11-15 Guillaume Lazzara <z@lrde.epita.fr> + * mln/data/paste_without_localization.hh: Add a missing dispatch + overload. + +2010-11-15 Guillaume Lazzara <z@lrde.epita.fr> + * mln/io/plot/save.hh: Remove an inline keyword. 2010-11-15 Guillaume Lazzara <z@lrde.epita.fr> diff --git a/milena/mln/data/paste_without_localization.hh b/milena/mln/data/paste_without_localization.hh index 667e7f1..0ee824c 100644 --- a/milena/mln/data/paste_without_localization.hh +++ b/milena/mln/data/paste_without_localization.hh @@ -329,6 +329,19 @@ namespace mln template <typename I, typename J> inline + void paste_without_localization_dispatch( + mln::trait::image::value_storage::any, + mln::trait::image::value_storage::any, + const Image<I>& input, + Image<J>& output) + { + impl::generic::paste_without_localization(input, output); + } + + + + template <typename I, typename J> + inline void paste_without_localization_dispatch(const Image<I>& input, Image<J>& output) { -- 1.5.6.5
participants (1)
-
Guillaume Lazzara