remove unused close_poly_tag

This commit is contained in:
Dane Springmeyer 2015-04-26 19:34:58 -07:00
parent f9439a590f
commit e60dfbba38

View file

@ -42,7 +42,6 @@
#include "agg_trans_affine.h"
#include "agg_conv_clip_polygon.h"
#include "agg_conv_clip_polyline.h"
#include "agg_conv_close_polygon.h"
#include "agg_conv_smooth_poly1.h"
#include "agg_conv_stroke.h"
#include "agg_conv_dash.h"
@ -58,7 +57,6 @@ namespace mapnik {
struct transform_tag {};
struct clip_line_tag {};
struct clip_poly_tag {};
struct close_poly_tag {};
struct smooth_tag {};
struct simplify_tag {};
struct stroke_tag {};
@ -205,15 +203,6 @@ struct converter_traits<T,mapnik::clip_poly_tag>
}
};
template <typename T>
struct converter_traits<T,mapnik::close_poly_tag>
{
using geometry_type = T;
using conv_type = typename agg::conv_close_polygon<geometry_type>;
template <typename Args>
static void setup(geometry_type & , Args const&) {}
};
template <typename T>
struct converter_traits<T,mapnik::transform_tag>
{