mirror of https://github.com/CGAL/cgal
Fixed compiler complain about missing return value
This commit is contained in:
parent
b4a8c00e09
commit
19954c5d73
|
|
@ -251,7 +251,7 @@ public:
|
|||
// vertex to the extended point.
|
||||
if (! vh->is_at_open_boundary() && m_base_equal(base_p, vh->point()))
|
||||
return (Point_2(base_p, vh));
|
||||
else return (Point_2(base_p));
|
||||
return (Point_2(base_p));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -308,7 +308,7 @@ public:
|
|||
// vertex to the extended point.
|
||||
if (! vh->is_at_open_boundary() && m_base_equal(base_p, vh->point()))
|
||||
return (Point_2(base_p, vh));
|
||||
else return (Point_2(base_p));
|
||||
return (Point_2(base_p));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue