From feca4d9f9b01e04f51919170e8a64c1d9b0b8eb1 Mon Sep 17 00:00:00 2001 From: Blake Thompson Date: Tue, 14 Apr 2015 01:02:33 -0500 Subject: [PATCH] Updated the clipper dependency to allow it to have some methods linked externally --- deps/clipper/include/clipper.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deps/clipper/include/clipper.hpp b/deps/clipper/include/clipper.hpp index 5af03f98f..fa3011306 100755 --- a/deps/clipper/include/clipper.hpp +++ b/deps/clipper/include/clipper.hpp @@ -178,10 +178,10 @@ void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillTyp void SimplifyPolygons(const Paths &in_polys, Paths &out_polys, PolyFillType fillType = pftEvenOdd); void SimplifyPolygons(Paths &polys, PolyFillType fillType = pftEvenOdd); -void CleanPolygon(const Path& in_poly, Path& out_poly, double distance = 1.415); -void CleanPolygon(Path& poly, double distance = 1.415); -void CleanPolygons(const Paths& in_polys, Paths& out_polys, double distance = 1.415); -void CleanPolygons(Paths& polys, double distance = 1.415); +MAPNIK_DECL void CleanPolygon(const Path& in_poly, Path& out_poly, double distance = 1.415); +MAPNIK_DECL void CleanPolygon(Path& poly, double distance = 1.415); +MAPNIK_DECL void CleanPolygons(const Paths& in_polys, Paths& out_polys, double distance = 1.415); +MAPNIK_DECL void CleanPolygons(Paths& polys, double distance = 1.415); void MinkowskiSum(const Path& pattern, const Path& path, Paths& solution, bool pathIsClosed); void MinkowskiSum(const Path& pattern, const Paths& paths, Paths& solution, bool pathIsClosed);