2010/3/1 Christian Henning
Hi Olivier, thanks for bringing this to my attention. I don't see a problem with this patch. I'll have the patch sit for a while ( couple of days ) in the trunk to make sure it's doesn't create any problems. Afterwards, I add it to the release branch. It should appear in Boost 1.43.
Thank you Christian. Regards, Olivier
Thanks, Christian
On Sat, Feb 27, 2010 at 9:48 AM, Olivier Tournaire
wrote: Hi,
A colleague of mine opened a ticket more than a year ago (https://svn.boost.org/trac/boost/ticket/2831) for a GIL defect. In fact, the custom color converter for color_converted_view on any_view is not plugged. The problem is also described in the title of the ticket. What is the status of this ticket? The changes are very simple, and are still not done in 1.42 version. Instead of:
template
struct color_converted_view_fn { typedef Result result_type; template <typename View> result_type operator()(const View& src) const { return result_type(color_converted_view<DstP>(src)); } }; There should be:
template
struct color_converted_view_fn { typedef Result result_type; color_converted_view_fn(CC cc = CC()): _cc(cc) {} template <typename View> result_type operator()(const View& src) const { return result_type(color_converted_view<DstP>(src, _cc)); }
private: CC _cc; };
Best regards.
Olivier
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users