Deal with duplicate lines

This commit is contained in:
Andreas Fabri 2024-08-06 08:06:41 +01:00
parent 847df9a0c9
commit ff89ba08ad
2 changed files with 1 additions and 2 deletions

View File

@ -931,7 +931,7 @@ public:
CGAL_assertion(this->int_to_off(offsets[i])[0] == 0 || this->int_to_off(offsets[i])[0] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[1] == 0 || this->int_to_off(offsets[i])[1] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[1] == 0 || this->int_to_off(offsets[i])[1] == 1);
CGAL_assertion(this->int_to_off(offsets[i])[2] == 0 || this->int_to_off(offsets[i])[2] == 1);
}
c->set_offsets(offsets[0], offsets[1], offsets[2], offsets[3]);

View File

@ -84,7 +84,6 @@ namespace CGAL {
ConstraintIterator first,
ConstraintIterator beyond)
{
typedef typename T::Point Point;
typedef typename T::Point Point;
std::vector<Point> points;
for (ConstraintIterator s_it=first; s_it!=beyond; ++s_it)