fixed is_valid() default arguments

Face::Face_handle(ff) to Face_handle(ff) in one of the constructor
This commit is contained in:
Mariette Yvinec 1999-10-05 07:12:45 +00:00
parent ca84193f17
commit b969c869ee
5 changed files with 5 additions and 5 deletions

View File

@ -139,7 +139,7 @@ cw_permute()
template <class Gt>
inline bool
Constrained_triangulation_face_base_2<Gt>::
is_valid(bool verbose = false, int level = 0) const
is_valid(bool verbose, int level) const
{
bool result = Fab::is_valid(verbose, level);
CGAL_triangulation_assertion(result);

View File

@ -134,7 +134,7 @@ public:
template < class Gt, class Tds >
bool
Delaunay_triangulation_2<Gt,Tds>::
is_valid(bool verbose = false, int level = 0) const
is_valid(bool verbose, int level) const
{
bool result = Triangulation_2<Gt,Tds>::is_valid(verbose, level);

View File

@ -217,7 +217,7 @@ power_test(const Face_handle& f, int i,
template < class Gt, class Tds >
bool
Regular_triangulation_2<Gt,Tds>::
is_valid(bool verbose = false, int level = 0) const
is_valid(bool verbose, int level) const
{
if (number_of_vertices() <= 1) return true;
bool result = Triangulation_2<Gt,Tds>::is_valid(verbose, level);

View File

@ -421,7 +421,7 @@ infinite_face() const
template <class Gt, class Tds >
bool
Triangulation_2<Gt, Tds>::
is_valid(bool verbose = false, int level = 0) const
is_valid(bool verbose, int level) const
{
bool result = _tds.is_valid(verbose, level);
if (dimension() <= 0 ||

View File

@ -314,7 +314,7 @@ Triangulation_line_face_circulator_2(const Point& pp,
const Point& qq,
const Face_handle& ff,
const Triangulation_2<Gt,Tds>* t)
: Face::Face_handle(ff), _tr(t), s(undefined), p(pp), q(qq)
: Face_handle(ff), _tr(t), s(undefined), p(pp), q(qq)
//begin the walk at face ff which has to contain pp
{
CGAL_triangulation_precondition(_tr->is_infinite(ff) ||