mirror of https://github.com/CGAL/cgal
Determinize Constraint_hierarchy_2.
This commit is contained in:
parent
50eaf2c988
commit
ee6850eb2a
|
|
@ -625,7 +625,7 @@ typename Constraint_hierarchy_2<T,Data>::H_edge
|
|||
Constraint_hierarchy_2<T,Data>::
|
||||
make_edge(T va, T vb) const
|
||||
{
|
||||
return (va<vb) ? H_edge(va,vb) : H_edge(vb,va);
|
||||
return (va->point()<vb->point()) ? H_edge(va,vb) : H_edge(vb,va);
|
||||
}
|
||||
|
||||
template <class T, class Data>
|
||||
|
|
|
|||
Loading…
Reference in New Issue