workaround the bug in bgl

This commit is contained in:
Sébastien Loriot 2016-05-17 10:19:03 +02:00
parent 8ae1876b23
commit d5e8cf95a8
1 changed files with 4 additions and 0 deletions

View File

@ -22,7 +22,11 @@ typedef Kernel::Direction_2 Direction_2;
// define the graph type
typedef boost::adjacency_list<boost::listS,
boost::vecS,
#ifdef CGAL_CXX11
boost::undirectedS,
#else
boost::directedS,
#endif
Point_2
> Graph;