mirror of https://github.com/CGAL/cgal
fix compilation for VC++
This commit is contained in:
parent
cb479491d5
commit
bb39544dcd
|
|
@ -26,6 +26,11 @@ struct Is_border {
|
|||
bool operator()(const Descriptor& d) const {
|
||||
return is_border(d,g);
|
||||
}
|
||||
|
||||
bool operator()(typename boost::graph_traits<G>::vertex_descriptor d) const {
|
||||
return is_border(d,g) == boost::none;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue