From 90391f3bee09b1addb3d5085f5995f0baeab65a4 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 29 Aug 2012 18:39:16 -0700 Subject: [PATCH] remove unused typedef --- include/mapnik/image_filter.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/mapnik/image_filter.hpp b/include/mapnik/image_filter.hpp index 58fee0181..b7a839f64 100644 --- a/include/mapnik/image_filter.hpp +++ b/include/mapnik/image_filter.hpp @@ -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 channels; - apply_convolution_3x3(src_view,dst_view,filter_tag); }