MAPNIK_DECL breaks on windows when compiled into static libmapnik-json.a

This commit is contained in:
Dane Springmeyer 2016-03-02 13:56:01 -08:00
parent 80d9aebb79
commit b5ac75cdf0
2 changed files with 2 additions and 4 deletions

View file

@ -24,14 +24,13 @@
#define MAPNIK_JSON_GEOMETRY_PARSER_HPP
// mapnik
#include <mapnik/config.hpp> // for MAPNIK_DECL
#include <mapnik/geometry.hpp>
#include <string>
namespace mapnik { namespace json {
MAPNIK_DECL bool from_geojson(std::string const& json, mapnik::geometry::geometry<double> & geom);
bool from_geojson(std::string const& json, mapnik::geometry::geometry<double> & geom);
}}

View file

@ -24,14 +24,13 @@
#define MAPNIK_GEOMETRY_TO_GEOJSON_HPP
// mapnik
#include <mapnik/config.hpp> // for MAPNIK_DECL
#include <mapnik/geometry.hpp>
#include <string>
namespace mapnik { namespace util {
MAPNIK_DECL bool to_geojson(std::string & json, mapnik::geometry::geometry<double> const& geom);
bool to_geojson(std::string & json, mapnik::geometry::geometry<double> const& geom);
}}