mirror of
https://github.com/mapnik/mapnik.git
synced 2026-02-01 17:36:36 +00:00
fix the ability of external libraries to link mapnik on windows
This commit is contained in:
parent
4aa957d373
commit
a917b7b410
@ -24,6 +24,7 @@
|
||||
#define MAPNIK_FEATURE_KV_ITERATOR_HPP
|
||||
|
||||
// mapnik
|
||||
#include <mapnik/config.hpp>
|
||||
#include <mapnik/value.hpp>
|
||||
// boost
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
@ -39,7 +40,7 @@ namespace mapnik {
|
||||
|
||||
class feature_impl;
|
||||
|
||||
class feature_kv_iterator :
|
||||
class MAPNIK_DECL feature_kv_iterator :
|
||||
public boost::iterator_facade<feature_kv_iterator,
|
||||
boost::tuple<std::string , value> const,
|
||||
boost::forward_traversal_tag>
|
||||
|
||||
@ -42,7 +42,7 @@ void feature_kv_iterator::decrement()
|
||||
// dummy //--itr_;
|
||||
}
|
||||
|
||||
void advance(boost::iterator_difference<feature_kv_iterator>::type )
|
||||
void feature_kv_iterator::advance(boost::iterator_difference<feature_kv_iterator>::type )
|
||||
{
|
||||
// dummy
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user