remove unused boost.thread includes
This commit is contained in:
parent
0e40b3c87d
commit
582ca02f44
6 changed files with 5 additions and 11 deletions
|
@ -5,7 +5,6 @@
|
|||
#define BOOST_CHRONO_HEADER_ONLY
|
||||
#include <boost/chrono/process_cpu_clocks.hpp>
|
||||
#include <boost/chrono.hpp>
|
||||
#include <boost/thread/thread.hpp>
|
||||
|
||||
using namespace boost::chrono;
|
||||
using namespace mapnik;
|
||||
|
@ -46,4 +45,4 @@ void test_wkt_creation()
|
|||
int main( int, char*[] )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
// boost
|
||||
#include <boost/unordered_map.hpp>
|
||||
#ifdef MAPNIK_THREADSAFE
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <thread>
|
||||
#endif
|
||||
|
||||
// std
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
#include <boost/ptr_container/ptr_vector.hpp>
|
||||
|
||||
#ifdef MAPNIK_THREADSAFE
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <thread>
|
||||
#endif
|
||||
|
||||
// stl
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
// boost
|
||||
#include <memory>
|
||||
#ifdef MAPNIK_THREADSAFE
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <thread>
|
||||
#endif
|
||||
|
||||
// stl
|
||||
|
|
|
@ -27,11 +27,6 @@
|
|||
#include <mapnik/debug.hpp>
|
||||
#include <mapnik/utils.hpp>
|
||||
|
||||
// boost
|
||||
#ifdef MAPNIK_THREADSAFE
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#endif
|
||||
|
||||
// occi
|
||||
#include <occi.h>
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
// proj4
|
||||
#include <proj_api.h>
|
||||
#if defined(MAPNIK_THREADSAFE) && PJ_VERSION < 480
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <thread>
|
||||
#ifdef _MSC_VER
|
||||
#pragma NOTE(mapnik is building against < proj 4.8, reprojection will be faster if you use >= 4.8)
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue