mirror of https://github.com/CGAL/cgal
Bugfix: ==
This commit is contained in:
parent
fa3b2d9bea
commit
aa81039e07
|
|
@ -828,7 +828,7 @@ Regular_triangulation<RTTraits, TDS>
|
||||||
typename RTTraits::Point_weight_d pw =
|
typename RTTraits::Point_weight_d pw =
|
||||||
geom_traits().point_weight_d_object();
|
geom_traits().point_weight_d_object();
|
||||||
|
|
||||||
if (pw(p) = pw(v->point()))
|
if (pw(p) == pw(v->point()))
|
||||||
return v;
|
return v;
|
||||||
// If dim == 0 and the new point has a bigger weight,
|
// If dim == 0 and the new point has a bigger weight,
|
||||||
// we replace the point
|
// we replace the point
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue