remove unused typedef

This commit is contained in:
Dane Springmeyer 2012-08-29 18:39:16 -07:00
parent d0aeba2f32
commit 90391f3bee

View file

@ -363,9 +363,6 @@ void apply_filter(Src const& src, Dst & dst, FilterTag filter_tag)
rgba8_view_t dst_view = interleaved_view(dst.width(),dst.height(),
(rgba8_pixel_t*) dst.raw_data(),
dst.width()*4);
typedef boost::mpl::vector<red_t,green_t,blue_t> channels;
apply_convolution_3x3(src_view,dst_view,filter_tag);
}