fix compile against boost 1.47 - closes #1885
This commit is contained in:
parent
dcc4981b13
commit
7c8dbacdb6
2 changed files with 2 additions and 1 deletions
|
@ -39,6 +39,7 @@
|
|||
#include <boost/mpl/int.hpp>
|
||||
|
||||
// fusion
|
||||
#include <boost/fusion/include/mpl.hpp>
|
||||
#include <boost/fusion/container/vector.hpp>
|
||||
#include <boost/fusion/include/at_c.hpp>
|
||||
#include <boost/fusion/include/make_vector.hpp>
|
||||
|
|
|
@ -91,7 +91,7 @@ datasource_ptr ds_generator(parameters const& params)
|
|||
}
|
||||
|
||||
typedef datasource_ptr (*ds_generator_ptr)(parameters const& params);
|
||||
typedef boost::unordered::unordered_map<std::string, ds_generator_ptr> datasource_map;
|
||||
typedef boost::unordered_map<std::string, ds_generator_ptr> datasource_map;
|
||||
|
||||
static datasource_map ds_map = boost::assign::map_list_of
|
||||
#if defined(MAPNIK_STATIC_PLUGIN_CSV)
|
||||
|
|
Loading…
Reference in a new issue