diff --git a/include/boost/gil/color_convert.hpp b/include/boost/gil/color_convert.hpp index 251092ffe..a91892842 100644 --- a/include/boost/gil/color_convert.hpp +++ b/include/boost/gil/color_convert.hpp @@ -188,17 +188,17 @@ struct default_color_converter_impl { channel_convert::type>( channel_invert( (std::min)(channel_traits::max_value(), - T1(channel_multiply(get_color(src,cyan_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); + T1(channel_multiply(get_color(src,cyan_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); get_color(dst,green_t())= channel_convert::type>( channel_invert( (std::min)(channel_traits::max_value(), - T1(channel_multiply(get_color(src,magenta_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); + T1(channel_multiply(get_color(src,magenta_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); get_color(dst,blue_t()) = channel_convert::type>( channel_invert( (std::min)(channel_traits::max_value(), - T1(channel_multiply(get_color(src,yellow_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); + T1(channel_multiply(get_color(src,yellow_t()),channel_invert(get_color(src,black_t())))+get_color(src,black_t()))))); } };