don't instantiate types that are not used in core library

This commit is contained in:
artemp 2016-05-03 18:33:06 +02:00
parent c0dfc92022
commit e596ffc1c2
2 changed files with 0 additions and 3 deletions

View File

@ -26,7 +26,6 @@
namespace mapnik {
template class box2d<int>;
template class box2d<std::int64_t>;
template class box2d<float>;
template class box2d<double>;

View File

@ -38,8 +38,6 @@ template MAPNIK_DECL mapnik::box2d<double> envelope(multi_line_string<double> co
template MAPNIK_DECL mapnik::box2d<double> envelope(multi_polygon<double> const& geom);
// collection
template MAPNIK_DECL mapnik::box2d<double> envelope(geometry_collection<double> const& geom);
//
template MAPNIK_DECL mapnik::box2d<std::int64_t> envelope(geometry<std::int64_t> const& geom);
} // end ns geometry
} // end ns mapnik