mirror of https://github.com/CGAL/cgal
workaround the bug in bgl
This commit is contained in:
parent
8ae1876b23
commit
d5e8cf95a8
|
|
@ -22,7 +22,11 @@ typedef Kernel::Direction_2 Direction_2;
|
||||||
// define the graph type
|
// define the graph type
|
||||||
typedef boost::adjacency_list<boost::listS,
|
typedef boost::adjacency_list<boost::listS,
|
||||||
boost::vecS,
|
boost::vecS,
|
||||||
|
#ifdef CGAL_CXX11
|
||||||
|
boost::undirectedS,
|
||||||
|
#else
|
||||||
boost::directedS,
|
boost::directedS,
|
||||||
|
#endif
|
||||||
Point_2
|
Point_2
|
||||||
> Graph;
|
> Graph;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue