mirror of https://github.com/CGAL/cgal
Merge pull request #688 from sloriot/SS_2-fix_for_boost.1.60
Straight_skeleton_2: fix for boost 1.60
This commit is contained in:
commit
d810d730ad
|
|
@ -21,6 +21,11 @@
|
|||
|
||||
#include <boost/bind.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
#include <boost/version.hpp>
|
||||
#if BOOST_VERSION == 106000
|
||||
//ice_not is deprecated in boost 1.60 but used within adjacency_matrix.hpp
|
||||
#include <boost/type_traits/detail/ice_not.hpp>
|
||||
#endif
|
||||
#include <boost/graph/adjacency_matrix.hpp>
|
||||
#include <CGAL/Unique_hash_map.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue