From 9e7f7917e396f7f27e887d0f70e64e1f948a9450 Mon Sep 17 00:00:00 2001 From: artemp Date: Tue, 12 Jan 2016 15:06:30 +0000 Subject: [PATCH] export `path_parse` --- src/svg/svg_path_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/svg/svg_path_parser.cpp b/src/svg/svg_path_parser.cpp index 2385c4c36..986f99b98 100644 --- a/src/svg/svg_path_parser.cpp +++ b/src/svg/svg_path_parser.cpp @@ -47,6 +47,6 @@ namespace mapnik { namespace svg { bool status = qi::phrase_parse(first, last, g, skip_type()); return (status && (first == last)); } - template bool parse_path(const char*, svg_converter_type&); + template bool MAPNIK_DECL parse_path(const char*, svg_converter_type&); }}