From 5b2e3ef0c702723c36e6cbce71f0bfebd0cef857 Mon Sep 17 00:00:00 2001 From: William Gallafent Date: Mon, 19 May 2014 18:43:59 +0100 Subject: [PATCH] Match original indenting --- include/boost/gil/color_convert.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()))))); } };