Determinize Constraint_hierarchy_2.

This commit is contained in:
Laurent Rineau 2010-03-10 18:05:13 +00:00
parent 50eaf2c988
commit ee6850eb2a
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ typename Constraint_hierarchy_2<T,Data>::H_edge
Constraint_hierarchy_2<T,Data>:: Constraint_hierarchy_2<T,Data>::
make_edge(T va, T vb) const 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> template <class T, class Data>