From ea9cc4c54b4af5f3bb8b5f9405a37af5edbbf87c Mon Sep 17 00:00:00 2001 From: artemp Date: Fri, 17 Oct 2014 21:22:36 +0100 Subject: [PATCH] remove cast --- include/mapnik/vertex_converters.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/vertex_converters.hpp b/include/mapnik/vertex_converters.hpp index a8ff2415c..b3444f934 100644 --- a/include/mapnik/vertex_converters.hpp +++ b/include/mapnik/vertex_converters.hpp @@ -98,7 +98,7 @@ struct converter_traits template static void setup(geometry_type & geom, Args const& args) { - geom.set_simplify_algorithm(static_cast(get(args.sym, args.feature, args.vars))); + geom.set_simplify_algorithm(get(args.sym, args.feature, args.vars)); geom.set_simplify_tolerance(get(args.sym,args.feature, args.vars)); } };