fixed bug due to prevoius replace of NULL by defaut constructors of handles

This commit is contained in:
Mariette Yvinec 2004-01-21 13:55:38 +00:00
parent 3b9dd3946f
commit d53cc02be3
1 changed files with 1 additions and 1 deletions

View File

@ -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: