mirror of https://github.com/CGAL/cgal
fixed bug due to prevoius replace of NULL by defaut constructors of handles
This commit is contained in:
parent
3b9dd3946f
commit
d53cc02be3
|
|
@ -999,7 +999,7 @@ Regular_triangulation_2<Gt,Tds>::
|
|||
insert(const Weighted_point &p, Locate_type lt, Face_handle loc, int li)
|
||||
{
|
||||
if (number_of_vertices() <= 1) return Base::insert(p);
|
||||
Vertex_handle v();
|
||||
Vertex_handle v;
|
||||
Oriented_side os;
|
||||
switch (lt) {
|
||||
case Base::VERTEX:
|
||||
|
|
|
|||
Loading…
Reference in New Issue