mirror of https://github.com/CGAL/cgal
Fixed warning with boost >= 10.38
This commit is contained in:
parent
b56188ae08
commit
057de88bea
|
|
@ -23,7 +23,12 @@
|
|||
#include <CGAL/value_type_traits.h>
|
||||
#include <CGAL/point_set_processing_assertions.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,12 @@
|
|||
#include <CGAL/value_type_traits.h>
|
||||
#include <CGAL/point_set_processing_assertions.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,12 @@
|
|||
#include <CGAL/property_map.h>
|
||||
#include <CGAL/point_set_processing_assertions.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,12 @@
|
|||
#include <CGAL/property_map.h>
|
||||
#include <CGAL/point_set_processing_assertions.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,12 @@
|
|||
|
||||
#include <CGAL/point_set_processing_assertions.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#include <iterator>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,12 @@
|
|||
#include <CGAL/Origin.h>
|
||||
#include <CGAL/value_type_traits.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
|
||||
CGAL_BEGIN_NAMESPACE
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,12 @@
|
|||
#define M_PI 3.14159265358979323846
|
||||
#endif
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
#include <boost/graph/prim_minimum_spanning_tree.hpp>
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,12 @@
|
|||
|
||||
#include <CGAL/value_type_traits.h>
|
||||
|
||||
#include <boost/property_map.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION >= 103800
|
||||
#include <boost/property_map/property_map.hpp>
|
||||
#else
|
||||
#include <boost/property_map.hpp>
|
||||
#endif
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
|
||||
#include <utility> // defines std::pair
|
||||
|
|
|
|||
Loading…
Reference in New Issue