remove unused close_poly_tag
This commit is contained in:
parent
f9439a590f
commit
e60dfbba38
1 changed files with 0 additions and 11 deletions
|
@ -42,7 +42,6 @@
|
||||||
#include "agg_trans_affine.h"
|
#include "agg_trans_affine.h"
|
||||||
#include "agg_conv_clip_polygon.h"
|
#include "agg_conv_clip_polygon.h"
|
||||||
#include "agg_conv_clip_polyline.h"
|
#include "agg_conv_clip_polyline.h"
|
||||||
#include "agg_conv_close_polygon.h"
|
|
||||||
#include "agg_conv_smooth_poly1.h"
|
#include "agg_conv_smooth_poly1.h"
|
||||||
#include "agg_conv_stroke.h"
|
#include "agg_conv_stroke.h"
|
||||||
#include "agg_conv_dash.h"
|
#include "agg_conv_dash.h"
|
||||||
|
@ -58,7 +57,6 @@ namespace mapnik {
|
||||||
struct transform_tag {};
|
struct transform_tag {};
|
||||||
struct clip_line_tag {};
|
struct clip_line_tag {};
|
||||||
struct clip_poly_tag {};
|
struct clip_poly_tag {};
|
||||||
struct close_poly_tag {};
|
|
||||||
struct smooth_tag {};
|
struct smooth_tag {};
|
||||||
struct simplify_tag {};
|
struct simplify_tag {};
|
||||||
struct stroke_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>
|
template <typename T>
|
||||||
struct converter_traits<T,mapnik::transform_tag>
|
struct converter_traits<T,mapnik::transform_tag>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue