avoid deprecation warnings with boost 1_40 related to location of property_map.hpp
This commit is contained in:
parent
d9d15bb081
commit
78fd5dc89a
1 changed files with 7 additions and 0 deletions
|
@ -28,8 +28,15 @@
|
|||
#include <mapnik/value.hpp>
|
||||
#include <mapnik/geometry.hpp>
|
||||
#include <mapnik/raster.hpp>
|
||||
|
||||
// boost
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 104000
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/utility.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
// stl
|
||||
|
|
Loading…
Add table
Reference in a new issue